calling python interpreter

Adrian Eyre a.eyre at optichrome.com
Wed Sep 1 11:24:14 EDT 1999


> I found a solution: chmod ugo+rx pippo.py. But ... should I do the
> same for every script? Does exist a faster system?

#!/bin/sh
for script in `find . -name '*.py'`; do
 chmod 755 $script
done

--------------------------------------------
Adrian Eyre <mailto:a.eyre at optichrome.com>
Optichrome Computer Solutions Ltd
Maybury Road, Woking, Surrey, GU21 5HX, UK
Tel: +44 1483 740 233  Fax: +44 1483 760 644
http://www.optichrome.com 
--------------------------------------------





More information about the Python-list mailing list