Useful bash commands

From RpWiki
Revision as of 09:03, 17 March 2010 by Rp (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Commands

Change permissions on files and folders with find

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