![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Apply `chmod` for multiple files through FTP | Chanakya.m | Shell Programming and Scripting | 3 | 05-22-2009 12:47 PM |
| users need to chmod on newly ftp'd files | jgentile | UNIX for Dummies Questions & Answers | 1 | 06-19-2008 06:00 AM |
| chmod command for recently modified files | polka_friend | UNIX for Dummies Questions & Answers | 2 | 08-30-2006 04:25 PM |
| Numeric CHMOD for .js files | Texan | UNIX for Advanced & Expert Users | 3 | 02-11-2006 06:15 PM |
| Chmod Help! | xwfprez | UNIX for Dummies Questions & Answers | 12 | 08-14-2001 04:29 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
hello,
i want to chmod 444 all files in a directory, files in subdirs cannot be chmoded same goes for the subdirs themself. So using: Code:
chmod -R 444 /dir/ I figured out how to chmod files only, but it still will chmod files in subdirectorys. Code:
find /dir/ -type f -print0 | xargs -0 chmod 444 |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|