Change Permissions on Directory and Files from command line
March 7, 2011 by admin
No Comments »
Here is a snippet command for changing file/folder permissions via command line
find . -type d -exec chmod 755 {} \;NOTE: Please also the permissions numbers as you prefer
Posted in: Shell Script, Ubuntu / Linux
