2009-10-31 1 views

ответ

6

Вы хотите shell=True вариант, чтобы сделать его выполнять команды оболочки:

import subprocess 
subprocess.Popen("sleep 4s && echo right thar, right thar",shell=True); 
print 'i like it when you put it' 

что дает:

I like it when you put it 
[4 seconds later] 
right thar, right thar