Difference between revisions of "Useful bash commands"
From RpWiki
(New page: == Commands == === Change permissions on files and folders with find === find . -type f -exec chmod 664 {} \; find . -type d -exec chmod 755 {} \;) |
(No difference)
|
Revision as of 08:03, 17 March 2010
Commands
Change permissions on files and folders with find
find . -type f -exec chmod 664 {} \; find . -type d -exec chmod 755 {} \;