windows python 能调用shell命令吗

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows python 能调用shell命令吗相关的知识,希望对你有一定的参考价值。

最近有个需求就是页面上执行shell命令,第一想到的就是os.system,

复制代码 代码如下:

os.system(\'cat /proc/cpuinfo\')

但是发现页面上打印的命令执行结果 0或者1,当然不满足需求了。
尝试第二种方案 os.popen()

复制代码 代码如下:

output = os.popen(\'cat /proc/cpuinfo\')
print output.read()

通过 os.popen() 返回的是 file read 的对象,对其进行读取 read() 的操作可以看到执行的输出。但是无法读取程序执行的返回值)
尝试第三种方案 commands.getstatusoutput() 一个方法就可以获得到返回值和输出,非常好用。

复制代码 代码如下:

(status, output) = commands.getstatusoutput(\'cat /proc/cpuinfo\')
print status, output

Python Document 中给的一个例子,

复制代码 代码如下:

>>> import commands
>>> commands.getstatusoutput(\'ls /bin/ls\')
(0, \'/bin/ls\')
>>> commands.getstatusoutput(\'cat /bin/junk\')
(256, \'cat: /bin/junk: No such file or directory\')
>>> commands.getstatusoutput(\'/bin/junk\')
(256, \'sh: /bin/junk: not found\')
>>> commands.getoutput(\'ls /bin/ls\')
\'/bin/ls\'
>>> commands.getstatus(\'/bin/ls\')
\'-rwxr-xr-x 1 root 13352 Oct 14 1994 /bin/ls\'

最后页面上还可以根据返回值来显示命令执行结果。
参考技术A Linux的shell脚本提供了大量方便的工具,如:
awk、grep、more、tail、wc等等,方便用户对文件、数据的分析,但是windows相对来说就没那么方便,要分析一个数据可能需要自己编程、编译然后才能对一些数据进行分析,对于一些轻量级的数据,不如shell脚本好用。

python 调用shell命令三种方法

#!/usr/bin/python是告诉操作系统执行这个脚本的时候,调用/usr/bin下的python解释器;
#!/usr/bin/env python这种用法是为了防止操作系统用户没有将python装在默认的/usr/bin路径里。

 

python调用shell命令的方法有许多

1.1   os.system(command)
       在一个子shell中运行command命令,并返回command命令执行完毕后的退出状态。这实际上是使用C标准库函数system()实现的。这个函数在执行command命令时需要重新打开一个终端,并且无法保存command命令的执行结果。
1.2   os.popen(command,mode)
      打开一个与command进程之间的管道。这个函数的返回值是一个文件对象,可以读或者写(由mode决定,mode默认是’r‘)。如果mode为’r‘,可以使用此函数的返回值调用read()来获取command命令的执行结果。
1.3   commands.getstatusoutput(command)
  使用os.popen()函数执行command命令并返回一个元组(status,output),分别表示command命令执行的返回状态和执行结果。对command的执行实际上是按照{command;} 2>&1的方式,所以output中包含控制台输出信息或者错误信息。output中不包含尾部的换行符。
 
2.1   subprocess.call(["some_command","some_argument","another_argument_or_path"])
        subprocess.call(command,shell=True)
2.2   subprocess.Popen(command, shell=True)
       如果command不是一个可执行文件,shell=True不可省。
       使用subprocess模块可以创建新的进程,可以与新建进程的输入/输出/错误管道连通,并可以获得新建进程执行的返回状态。使用subprocess模块的目的是替代os.system()、os.popen*()、commands.*等旧的函数或模块。
  最简单的方法是使用class subprocess.Popen(command,shell=True)。Popen类有Popen.stdin,Popen.stdout,Popen.stderr三个有用的属性,可以实现与子进程的通信。
将调用shell的结果赋值给python变量
handle = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE)
print handle.communicate()[0]
2.3 用 commands 模块。其实也是对popen的封装。此模块主要有如下方法
commands.getstatusoutput(cmd) 返回(status, output).
commands.getoutput(cmd) 只返回输出结果
commands.getstatus(file) 返回ls -ld file的执行结果字符串,调用了getoutput,不建议使用此方法.
>>> import commands
>>> commands.getstatusoutput(‘ls /bin/ls‘)
(0, ‘/bin/ls‘)
>>> commands.getstatusoutput(‘cat /bin/junk‘)
(256, ‘cat: /bin/junk: No such file or directory‘)
>>> commands.getstatusoutput(‘/bin/junk‘)
(256, ‘sh: /bin/junk: not found‘)
>>> commands.getoutput(‘ls /bin/ls‘)
‘/bin/ls‘
>>> commands.getstatus(‘/bin/ls‘)
‘-rwxr-xr-x  1 root        13352 Oct 14  1994 /bin/ls‘
 
 
 
 
 
在Python/wxPython环境下,执行外部命令或者说在Python程序中启动另一个程序的方法一般有这么几个:
1、os.system(command)
2、wx.Execute(command, syn=wx.EXEC_ASYNC, callback=None)
     若置syn为wx.EXEC_ASYNC则wx.Excute函数立即返回,若syn=wx.EXEC_SYNC则等待调用的程序结束后再返回。
     callback是一个wx.Process变量,如果callback不为None且syn=wx.EXEC_ASYNC,则程序结束后将调用wx.Process.OnTerminate()函数。
os.system()和wx.Execute()都利用系统的shell,执行时会出现shell窗口。如在Windows下会弹出控制台窗口,不美观。下面的两种方法则没有这个缺点。
3、class subprocess.Popen
     最简单的用法是:
     import subprocess
     subprocess.Popen(command, shell=True)
     如果command不是一个可执行文件,shell=True不可省。
前面三个方法只能用于执行程序和打开文件,不能处理URL,打开URL地址可用webbrowser模块提供的功能。
4、webbrowser.open(url)
     调用系统缺省浏览器打开URL地址,如 webbrowser.open(‘http://www.google.com‘),也可以利用
     webbrowser.open(‘h:\python.zip‘)来执行程序。这样可以不必区分是文件名还是URL,不知道在Linux下是否可行。
以上在Windows2000,Python2.4a1,wxPython 2.5.1运行。
modify:还有一种方式:subprocess.call(*args, **kwargs)
 

 

以上是关于windows python 能调用shell命令吗的主要内容,如果未能解决你的问题,请参考以下文章

python 用IDLE能运行 用shell不能运行

如何用shell调用多条cmd命令

如何在Windows实现远程调用Linux下的shell指令

如何在C语言中调用cmd命令?

如何让php执行shell

有没有用 go 或者 python 代替 shell 脚本的