Re: [Tutor] how to stop output to terminal

2007-05-11 Thread shawn bright
cool, thanks sk On 5/11/07, Luke Paireepinart <[EMAIL PROTECTED]> wrote: shawn bright wrote: > lo there all, > > i have a simple thread that i want to run without piping any output to > the terminal. > like if i do an > > x = os.system("ping -c 1 www.google.com ") > > i d

Re: [Tutor] how to stop output to terminal

2007-05-11 Thread Luke Paireepinart
shawn bright wrote: > lo there all, > > i have a simple thread that i want to run without piping any output to > the terminal. > like if i do an > > x = os.system("ping -c 1 www.google.com ") > > i don't want it to show all the stuff in the terminal. if you use os.popen or t

[Tutor] how to stop output to terminal

2007-05-10 Thread shawn bright
lo there all, i have a simple thread that i want to run without piping any output to the terminal. like if i do an x = os.system("ping -c 1 www.google.com") i don't want it to show all the stuff in the terminal. can i disable that ? can i disable it for only certain lines? thanks ___