ソースを参照

Add script to recursively tweak file permissions

DricomDragon 4 年 前
コミット
388372ae80
1 ファイル変更2 行追加0 行削除
  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 '{}' \;