vote up 5 vote down star
2

I want to recursively chmod all of the subdirectories below my calcium directory:

chmod a+wx calcium

How do I change the above command to do this?

I believe I'm using bash shell although I'm not sure how to verify this.

flag

4 Answers

vote up 10 vote down check

chmod -R is going to do it on everything, not just directories.

To target only directories you can use find + xargs

find calcium/ -type d | xargs chmod a+wx
link|flag
2  
find has a -exec. Use it. It's not bugged like xargs is. (xargs is bugged for filenames containing spaces and quote characters unless you use the -0 option and use find's -print0 to feed it NULL-separated data). Use this instead: find foo/ -type d -exec chmod a+wx {} \; – lhunath May 2 at 20:23
nice, i'll be trying that out instead – xkcd150 May 3 at 6:13
vote up 1 vote down
$ echo $SHELL

should tell you what shell you are using. But that likely doesn't matter, since chmod is an executable that any shell would call just the same.

link|flag
Thanks. It's bash . – Yen May 2 at 18:38
vote up 1 vote down

chmod -R a+wx calcium

link|flag
vote up 9 vote down
chmod -R <whatever>
link|flag
Cool! Thanks . – Yen May 2 at 18:34
1  
As xkcd150 mentioned in a later answer, this will chmod everything. Not just subdirectories as the question specifies. – Danny May 2 at 19:08
Sure, it is. But it isn't terribly useful to only have write/execute on the directory but not the contents. Which is why I use this form. – dirkgently May 2 at 19:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.