阅读量:2
在Perl中调用系统命令可以使用system
函数或者反引号操作符。下面是两种方法的示例代码:
- 使用
system
函数调用系统命令:
my $command = 'ls -l'; system($command);
在上面的示例中,我们使用system
函数调用了ls -l
命令来列出当前目录的文件和文件夹。
- 使用反引号操作符调用系统命令:
my $command_output = `ls -l`; print $command_output;
在上面的示例中,我们使用反引号操作符调用了ls -l
命令,并将输出存储在$command_output
变量中,然后打印输出。