October 11, 2013 — kyle.huynh205
Change permission for all files in a Linux directory
This command can be used in local directory and remote hosting linux server.
find . -type f -iname “*” -print0 | xargs -I {} -0 chmod 0444 {}
This command can be used in local directory and remote hosting linux server.
find . -type f -iname “*” -print0 | xargs -I {} -0 chmod 0444 {}