added chmod command

This commit is contained in:
rasbt 2014-05-21 17:26:28 -04:00
parent 040b553a00
commit a22919a1fa

View File

@ -7,8 +7,13 @@
# instead of # instead of
# >> python myscript.py # >> python myscript.py
# prepends !#/usr/bin/python to all .py files
find ./ -maxdepth 1 -name "*.py" -exec sed -i.bak '1i\ find ./ -maxdepth 1 -name "*.py" -exec sed -i.bak '1i\
!#/usr/bin/python !#/usr/bin/python
' {} \; ' {} \;
find . -name "*.bak" -exec rm -rf {} \; # removes temporary files
find . -name "*.bak" -exec rm -rf {} \;
# makes Python scripts executable
chmod ug+x *.py