chmodでファイルのパーミッションを再帰的に変更する

find ./ -type f -print | xargs chmod 644 

http://doruby.kbmj.com/SK/20091029/chmod_1

ディレクトリも設定するならこう?

find ./ -type d -print | xargs chmod 755

sudo を加えて、さらに該当するファイルがなくても文句を言われないような修正方法を考えてみる:

sudo find ./ -type f -exec sudo chmod 644 '{}' \;
sudo find ./ -type d -exec sudo chmod 755 '{}' \;
chmod.txt · 最終更新: 2011/02/05 21:41 by Takuya Nishimoto
www.chimeric.de Valid CSS Driven by DokuWiki do yourself a favour and use a real browser - get firefox!! Recent changes RSS feed Valid XHTML 1.0