在Python中,你可以使用subprocess
模塊來執行命令并獲取輸出
import subprocess
# 要執行的命令,例如:ls命令
command = "ls"
# 使用subprocess.run()執行命令
result = subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, shell=True)
# 獲取命令的輸出
output = result.stdout
# 打印輸出
print("Command output:")
print(output)
在這個例子中,我們執行了ls
命令,并將stdout
和stderr
設置為subprocess.PIPE
以便捕獲輸出。text=True
參數表示我們希望以文本形式接收輸出,而不是字節形式。shell=True
參數允許我們在shell環境中執行命令,這在執行包含管道、重定向等特性的命令時非常有用。
請注意,使用shell=True
可能會導致安全風險,尤其是在處理用戶提供的輸入時。在這種情況下,最好避免使用shell=True
,并直接將命令及其參數作為列表傳遞。例如:
command = ["ls", "-l"]