Linuxコマンド

>

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

公開日 : 2025/01/10

最終更新日時 : 2025/01/12 23:37

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

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 {} \;