You are not logged in.
Pages: 1
how do I chown for all the folders under the one folder I am changing permissions?
-----------------------
thanks love you guys
Last edited by otacon (2009-02-12 02:50:05)
http://remcycle.net
Cheap Web Hosting and Even Cheaper Domain Registration
Offline
man chown
Offline
here's another hint: chown --help |grep recursive
Offline
chown -R
Offline
find /directory/to/search -type d -exec chown user:group {} \;
Works for chmod too
find /directory/to/search -type d -exec chmod 755 {} \;
And files:
find /directory/to/search -type f -exec chmod 644 {} \;
Last edited by fukawi2 (2009-02-12 02:51:24)
Are you familiar with our Forum Rules, and How To Ask Questions The Smart Way?
BlueHackers // fscanary // resticctl
Offline
Pages: 1