Re: sending ctrl C to a program

2006-03-29 Thread Grant Edwards
On 2006-03-29, Dale Strickland-Clark <[EMAIL PROTECTED]> wrote: >> i have a program that works very similar to tail -f in Unix It >> will need a Ctrl-C in order to break out of the program. I >> wish to run this program using python (either thru os.system() >> or some other subprocess modules) and

Re: sending ctrl C to a program

2006-03-29 Thread Dale Strickland-Clark
[EMAIL PROTECTED] wrote: > hi > i have a program that works very similar to tail -f in Unix > It will need a Ctrl-C in order to break out of the program. > I wish to run this program using python (either thru os.system() or > some other subprocess modules) and how can i pass Ctrl-C to this > progr

sending ctrl C to a program

2006-03-28 Thread s99999999s2003
hi i have a program that works very similar to tail -f in Unix It will need a Ctrl-C in order to break out of the program. I wish to run this program using python (either thru os.system() or some other subprocess modules) and how can i pass Ctrl-C to this program to terminate it in python? thanks