Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 202 Bytes

chmod_to_FnD.md

File metadata and controls

11 lines (8 loc) · 202 Bytes

Change all directories in . to have chmod 775

find . -type d -exec chmod 775 {} \;

Change all files in . to have chmod 664

find . -type f -exec chmod 664 {} \;