在Perl中调用系统命令可以使用system
函数或者反引号操作符。下面是两种方法的示例代码:
system
函数调用系统命令:my $command = 'ls -l';
system($command);
在上面的示例中,我们使用system
函数调用了ls -l
命令来列出当前目录的文件和文件夹。
my $command_output = `ls -l`;
print $command_output;
在上面的示例中,我们使用反引号操作符调用了ls -l
命令,并将输出存储在$command_output
变量中,然后打印输出。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: perl怎么调用python脚本