Вы хотите, чтобы опция 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