加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

【Perl】 system/exec/readpipe区别

发布时间:2020-12-16 00:30:44 所属栏目:大数据 来源:网络整理
导读:system system("command",arg0,arg1 ...) 执行命令返回结束状态 exec The? exec ?function executes a system command? and never returns ; use? system ?instead of? exec ?if you want it to return . I t fails and returns false only if the command d

system

system("command",arg0,arg1 ...) 执行命令返回结束状态


exec

The?exec?function executes a system command?and never returns; use?system?instead of?exec?if you want it to return. It fails and returns false only if the command does not exist?and?it is executed directly instead of via your system's command shell (see below).


readpipe

The collected standard output of the command is returned. In scalar context,it comes back as a single (potentially multi-line) string. In list context,returns a list of lines (however you've defined lines with?$/?or?$INPUT_RECORD_SEPARATOR?).

返回运行结果

my $result = readpipe("ls -l");
print $result;

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读