在Python中使用subprocess.Popen
來執(zhí)行shell命令并與其交互。以下是一個簡單的示例:
import subprocess
# 執(zhí)行shell命令
proc = subprocess.Popen(['bash'], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
# 與shell命令交互
output, error = proc.communicate(input=b'echo "Hello, world!"\n')
print(output.decode())
在這個示例中,我們使用subprocess.Popen
來執(zhí)行bash命令,并通過communicate
方法與其交互。我們將"echo "Hello, world!"\n"
傳遞給communicate
方法,這樣shell命令就會輸出Hello, world!
。最后,我們使用decode
方法來將輸出轉(zhuǎn)換為字符串并打印出來。
你可以根據(jù)需要修改命令和交互內(nèi)容來適應(yīng)不同的情況。