1. 程式人生 > >python定義的一個簡單的shell函數的代碼

python定義的一個簡單的shell函數的代碼

一個 ret pipe pop ces nbsp tde turn open

把寫代碼過程中經常用到的一些代碼段做個記錄,如下代碼段是關於python定義的一個簡單的shell函數的代碼。

pipe = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = pipe.communicate()
return pipe.returncode, stdout, stderr




python定義的一個簡單的shell函數的代碼