Quote:
Originally Posted by pdurrant
Give it a try and let me know what you think.
|
Nice program! Thanks!
Would you consider changing all the print statements except the last to use:
sys.stderr.write()
instead of print?
This would be usefull when the output from multiple calls is redirected to a file as in the following bash script:
Code:
for name in *
do
echo $name >> results.txt
drmcheck.py $name >> results.txt
done