Re: confused with subprocess.Popen

2009-05-12 Thread Roy Hyunjin Han
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

Re: confused with subprocess.Popen

2009-05-09 Thread Soumen banerjee
Thanks!, i have found that alternately setting shell=True also works -- http://mail.python.org/mailman/listinfo/python-list

Re: confused with subprocess.Popen

2009-05-09 Thread Matt Nordhoff
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

confused with subprocess.Popen

2009-05-09 Thread Soumen banerjee
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