Tech notes

Daily notes about my IT activities.

2018-07-29

Change permissions of all nested files and directories

by hackprime

For directories:

find . -type d -print0 | xargs -0 chmod -R 0755

For files:

find . -type f -print0 | xargs -0 chmod -R 0644