Python 之调用系统命令
在python中执行系统命令的方法有以下几种:
1.os.system(command)
>>> s = os.system(‘ls -l‘) 总用量 56 drwxr-xr-x. 2 root root 4096 4月 16 16:39 down_scripts -rw-r--r--. 1 root root 30 4月 18 11:29 ip.list drwxr-xr-x. 2 root root 4096 4月 23 16:30 mypython drwxr-xr-x. 2 root root 4096 4月 22 09:57 mysource drwxr-xr-x. 3 root root 4096 4月 17 11:51 mywork drwxr-xr-x. 2 root root 36864 3月 19 11:09 pythoncook >>> print s 0 >>> s = os.system(‘ll -5‘) sh: ll: command not found >>> print s 32512 #返回值是命令的退出状态。不能扑捉输出的内容
本文出自 “浪淘沙” 博客,谢绝转载!
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。