9Sep/087
Recursive chmod for files or directories only
To do a recursive chmod to directories only you can run:
find . -type d -exec chmod 755 {} \;
And for files only:
find . -type f -exec chmod 644 {} \;
Related Article
Sideblog 
- Mozilla Released Thunderbird 3 9 December 2009
The long waited open source email client Thunderbird 3 is now released! Upgrading from Thunderbird 2 to Thunderbird 3 is very easy and almost automatically. Once you finished installing version 3, you. […] - Microsoft Wireless Comfort Desktop 5000 Keyboard and Mouse 22 October 2009
The Microsoft Wireless Comfort Desktop 5000 has been designed to enhance your Windows 7 experience. You can easily access programs in the task bar with convenient hot keys. Applications in the taskbar. […] - WooFunction: 178 Amazing Web Design Icons 28 September 2009
The WooFunction Icon Set includes 178 amazing web-related icons in a sophisticated and glossy design style. All 178 icons are available as 32×32 pixel PNG files and we can assure you that they are in. […] - Moblin the Next Generation OS for Netbook 27 September 2009
Moblin is an open source project that supports Linux-based software platform and is optimized for the next generation of mobile devices including netbooks, mobile Internet devices (MIDs), in-vehicle i. […] - Twitterify Your Wordpress Blog Using P2 Theme 21 September 2009
Twitter is becoming more and more popular due to its requirement as micro blogging is not much, only 140 characters that even less than a text message limit which is 160 characters. Blogger that is no. […]

September 15th, 2008 - 11:02
wow.. new tutorial.. thanx
September 20th, 2008 - 11:51
wahhh ngomong2 apa tuh mas
*maap oon nih
September 20th, 2008 - 19:33
ini command di linux untuk ubah permission direktori atau file
September 24th, 2008 - 17:16
alasan 775 dan 644 paan mas,
maklum newbie
ga gitu paham,
September 27th, 2008 - 15:13
wah..lum ngerti linux
March 16th, 2009 - 22:19
Sweet! Still not sure why the standard chmod -R doesn’t do this.
March 17th, 2009 - 00:21
i think there is number of characters limit on single bash command and i guess what “chmod -R 755 dir” does is actually translate it to “chmod 755 dir subdir1 subdir2 … subdirN” so.. if you have a lot of sub directory that you want to chmod’ed it will result a long long single line command.