27 May
2006
27 May
'06
11:06
Per Jessen wrote:
Rikard Johnels wrote:
This is almost embarasing.. I am trying to recursively chmod a series of files.
chmod -R ?
/Per Jessen, Zürich
Is a better option find <dir> -type f -exec chmod 644 {} \; Replace <dir> with the required path or use . for the currect dir. chmod 644 on a directory means you wont be able to cd into it. Steve