Browse Source

Add script to recursively tweak file permissions

DricomDragon 4 years ago
parent
commit
388372ae80
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Install/Templates/examples/recursive-permissions.sh

+ 2 - 0
Install/Templates/examples/recursive-permissions.sh

@@ -0,0 +1,2 @@
+find /home/jovian/Pictures/ -type d -print -exec chmod -R 744 '{}' \;
+find /home/jovian/Pictures/ -type f -print -exec chmod 644 '{}' \;