snippet: CHMOD über Verzeichnisse und Dateien

nur Verzeichnisse:

find /neu -type d -print0 | xargs -0 chmod 0775

nur Dateien:

find /neu -type f -print0 | xargs -0 chmod 0664
This entry was posted in Development and tagged , , , . Bookmark the permalink.

Comments are closed.