文章列表
转自:http://blog.csdn.net/code805772847/article/details/7100600
使用perl调用外名命令有很多方法,这里就不详细讲解。
如有shell脚本a.sh
#!/bin/bash
echo "script out put"
exit 2
有perl脚本test.pl调用a.sh
#!/bin/perl -w
$output = qx(/usr/local/a.sh);
$exitcode = $?;
print "output = " . $output;
print "e ...