/ Published in: Bash

-print0 and -0 are used to allow for spaces and other wacky chars in file names
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
find . -type f -print0 | xargs -0 chmod 644
Comments
