bit of a bug in initial check-in; was not passing filename to first grep.
[feisty_meow.git] / scripts / files / fix_game_perms.sh
index 4cf49d94449707d1e382f7a1d4e6dfd0282a9b45..9d21480842daa73cd5032e2dfe4dc7b267eabd3c 100644 (file)
@@ -3,6 +3,8 @@
 # fixes the permissions of files in the local games directory so that
 # everyone can run or read them if the owner could.
 
-find /home/games -type f -perm /100 -exec chmod a+x {} ';'
-find /home/games -type f -perm /400 -exec chmod a+r {} ';'
+sudo find /home/games -type f -perm /100 -exec chmod a+x {} ';'
+sudo find /home/games -type f -perm /400 -exec chmod a+r {} ';'
+
+sudo find /home/games -type d -exec chmod a+rx {} ';'