ディレクトリ配下のパーミッション/オーナーを一括変更する

現在のディレクトリ配下のパーミッションを再帰的に変更するには、例えば下記のように実行します。

1
2
3
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;
find . -name "*.sh" -exec chmod 755 {} \;

オーナーも変更したい場合は以下のように実行します。

1
chown -R root:root .