There's a great article by Doug Hellmann on subprocess.
http://www.doughellmann.com/PyMOTW/subprocess/
On Sun, May 10, 2009 at 1:37 AM, Soumen banerjee wrote:
> Thanks!, i have found that alternately setting shell=True also works
> --
> http://mail.python.org/mailman/listinfo/python-list
>
--
ht
Thanks!, i have found that alternately setting shell=True also works
--
http://mail.python.org/mailman/listinfo/python-list
Soumen banerjee wrote:
> Hello,
> for a certain app, i used to use a command:
> os.system("soundwrapper espeak -f line.txt")
> now, if i wanted to kill espeak, i would have to run:
> os.system("killall espeak")
> since the subprocess module allows sending SIGKILL to the process, i
> decided to swit
Hello,
for a certain app, i used to use a command:
os.system("soundwrapper espeak -f line.txt")
now, if i wanted to kill espeak, i would have to run:
os.system("killall espeak")
since the subprocess module allows sending SIGKILL to the process, i
decided to switch to using it. However i cant pass t