標籤:python shell命令 shell
hello.py代碼如下:
#!/usr/bin/pythonprint "hello, world!"
TestInput.py代碼如下:
#!/usr/bin/pythonstr = raw_input()print("input string is: %s" % str)
1.os.system(cmd)
這種方式只是執行shell命令,返回一個返回碼(0表示執行成功,否則表示失敗)
retcode = os.system("python hello.py")print("retcode is: %s" % retcode);
輸出:
hello, world!retcode is: 0
2.os.popen(cmd)
執行命令並返回該執行命令程式的輸入資料流或輸出資料流.該命令只能操作單向流,與shell命令單向互動,不能雙向互動.
返回程式輸出資料流,用fouput變數串連到輸出資料流
fouput = os.popen("python hello.py")result = fouput.readlines()print("result is: %s" % result);
輸出:
result is: [‘hello, world!\n‘]
返回輸入資料流,用finput變數串連到輸出資料流
finput = os.popen("python TestInput.py", "w")finput.write("how are you\n")
輸出:
input string is: how are you
3.利用subprocess模組subprocess.call()
類似os.system(),注意這裡的”shell=True”表示用shell執行命令,而不是用預設的os.execvp()執行.
f = call("python hello.py", shell=True)print f
輸出:
hello, world!0
subprocess.Popen()
利用Popen可以是實現雙向流的通訊,可以將一個程式的輸出資料流發送到另外一個程式的輸入資料流.
Popen()是Popen類的建構函式,communicate()返回元組(stdoutdata, stderrdata).
p1 = Popen("python hello.py", stdin = None, stdout = PIPE, shell=True)p2 = Popen("python TestInput.py", stdin = p1.stdout, stdout = PIPE, shell=True)print p2.communicate()[0]#other way#print p2.stdout.readlines()
輸出:
input string is: hello, world!
整合代碼如下:
#!/usr/bin/pythonimport osfrom subprocess import Popen, PIPE, callretcode = os.system("python hello.py")print("retcode is: %s" % retcode);fouput = os.popen("python hello.py")result = fouput.readlines()print("result is: %s" % result);finput = os.popen("python TestInput.py", "w")finput.write("how are you\n")f = call("python hello.py", shell=True)print fp1 = Popen("python hello.py", stdin = None, stdout = PIPE, shell=True)p2 = Popen("python TestInput.py", stdin = p1.stdout, stdout = PIPE, shell=True)print p2.communicate()[0]#other way#print p2.stdout.readlines()
Python與shell的互動方式