In article <4e84388c$0$29965$c3e8da3$54964...@news.astraweb.com>,
 Steven D'Aprano <steve+comp.lang.pyt...@pearwood.info> wrote:

> I have a Python script which I would like to test without a tty attached 
> to the process. I could run it as a cron job, but is there an easier way?

I'm not sure what you mean by "without a tty attached to the process".  
If you mean no file descriptors attached to your control terminal, then 
some variation on

foo.py < /dev/null > /dev/null

(as others has suggested) might be good enough.  Or, are you talking 
about control terminals in the process control sense?  In that case, you 
might want to look at the "at" or "batch" commands, which do very much 
the same thing as cron, but without the overhead of having to edit the 
cron file to get things going.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to