ファイルとかのパーミッションを再帰的に変更したい
2015/07/03
あるディレクトリ以下全ファイルのパーミッションを再帰的に変更
chmod 666(or +x的なヤツ) -R ディレクトリ
あるディレクトリ以下の全ディレクトリのパーミッションを再帰的に変更
find . -type d -exec chmod 775 {} \;
あるディレクトリ以下の全ファイルのパーミッションを再帰的に変更
find . -type f -exec chmod 664 {} \;
Just another Blog site
2015/07/03
chmod 666(or +x的なヤツ) -R ディレクトリ
find . -type d -exec chmod 775 {} \;
find . -type f -exec chmod 664 {} \;