Return to Snippet

Revision: 33837
at October 14, 2010 02:02 by jfine


Initial Code
find . -type f -print0 | xargs -0 chmod 644

Initial URL


Initial Description
-print0 and -0 are used to allow for spaces and other wacky chars in file names

Initial Title
Chmod files recursively to 644

Initial Tags
file, files, find

Initial Language
Bash