Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 175 Bytes

chmod.md

File metadata and controls

6 lines (4 loc) · 175 Bytes

recursively give directories read&execute privileges:

find ./ -type d -exec chmod 755 {} +

recursively give files read privileges:

find ./ -type f -exec chmod 644 {} +