在Python中,你可以使用subprocess
模塊來執行Bash命令
import subprocess
# 定義一個Bash命令
bash_command = "echo 'Hello, World!'"
# 使用subprocess.run()執行Bash命令
result = subprocess.run(bash_command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, shell=True)
# 輸出執行結果
print("返回碼:", result.returncode)
print("標準輸出:", result.stdout)
print("錯誤輸出:", result.stderr)
在這個例子中,我們使用subprocess.run()
函數執行了一個簡單的Bash命令echo 'Hello, World!'
。stdout
和stderr
參數用于捕獲命令的輸出,text=True
表示以文本模式處理輸出(而不是字節模式)。shell=True
表示在shell環境中執行命令。
如果你需要執行更復雜的Bash腳本,可以將腳本文件名作為bash_command
變量的值:
bash_command = "/path/to/your/script.sh"
請注意,使用shell=True
可能會導致安全風險,尤其是在處理用戶提供的輸入時。在這種情況下,最好使用shell=False
并傳遞一個命令序列(列表形式):
bash_command = ["/path/to/your/script.sh"]
result = subprocess.run(bash_command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)