Linuxコマンド

>

パーミッションの一括設定

ディレクトリのパーミッション一括設定

find . -type d -exec chmod 705 {} \;

 

ファイルのパーミッション一括設定

find . -type f -exec chmod 604 {} \;

 

拡張子でパーミッション一括設定

拡張子が php のファイル

find . -name "*.php" -exec chmod 604 {} \;

 

拡張子が py のファイル

find . -name "*.py" -exec chmod 705 {} \;