博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
perl shell交换示例
阅读量:6223 次
发布时间:2019-06-21

本文共 352 字,大约阅读时间需要 1 分钟。

a.sh

  1 #/bin/sh
  2 echo "haha";
  3 exit 1;
perl脚本

22 my $output=qx(sh a.sh);

 23 my $exitcode=$?;
 24 $exitcode>>=8;
 25 print "output=$output\n";
 26 print "exitcode=$exitcode\n";
 27 system("pwd");
 28 print STDERR "$0 has finished,congratulations!\n";
 29 print STDERR "Time elapsed:".(Time::HiRes::time-$tmStarted)."\n";

 

 

http://www.docin.com/p-56464488.html

转载地址:http://pirja.baihongyu.com/

你可能感兴趣的文章
Ubuntu软件包管理器
查看>>
【03】循序渐进学 docker:基础命令
查看>>
【转】Deep Learning(深度学习)学习笔记整理系列之(四)
查看>>
Protostuff序列化
查看>>
Servlet & Jsp
查看>>
python Image模块基本语法
查看>>
DS博客作业01--日期抽象数据类型设计与实现
查看>>
docker镜像的操作
查看>>
Tomcat 9.0安装配置
查看>>
mybatis :实现mybatis分页
查看>>
hdu-2685 I won't tell you this is about number theory---gcd和快速幂的性质
查看>>
异常处理
查看>>
家庭记事本开发进度2
查看>>
[Azure] 使用 Visual Studio 2013 管理中国版 Azure 订阅
查看>>
VB动态添加WebBrowser控件,并拦截弹出窗口(不用引用任何组件)
查看>>
C#线程的参数传递
查看>>
HDU1059
查看>>
jquery 选择器多个
查看>>
关于Maya 的 Node ID
查看>>
[转]DPM2012系列之十一:还原exchange 2010数据库
查看>>