On Mon, 30 Jan 2006 12:04:07 -0600 chris clepper cgc@humboldtblvd.com wrote:
On 1/30/06, CK chris@lo-res.org wrote:
I read:
I would like to write various output to a log file in the same manner as the print object. Does such an object exist?
[/tmp/log log this stuff ( | [shell]
cat /tmp/log
#!/bin/bash echo $@ >> /tmp/log.txt
Yeah, I already thought about that, but this will have to work under Windows as well. I don't have a working [shell] for Windows at the moment...
of course you can also write log files with py/pyext ...
t