特定のディレクトリ下のすべてのファイル(およびディレクトリ)を、各ファイルを単独でchmodすることなく読み取り可能にします。これを再帰的に行うオプションがある場合は素晴らしいでしょう(フォルダの下を見て、その下のすべてのファイルをchmod 666)
man 3 chmod
には、探している情報が含まれています。
chmod -R +r directory
-R
オプションは、chmod
に再帰的に動作するように指示します。
ディレクトリにはリンクやバインドマウントが含まれる可能性があるため、find
を使用すると、実行することと実行しないことを細かく制御できます。
find directory \( -type f -o -type d \) -print0 |
xargs -0 chmod ugo+r
マウントポイントの下のパスを除外するには:
find directory -mount \( -type f -o -type d \) -print0 |
xargs -0 chmod ugo+r
特定のファイル(サンプルの.htaccess)を除外するには:
find directory \( -type f -o -type d \) ! -name '.htaccess' -print0 |
xargs -0 chmod ugo+r
chmod -R 0444 ./folder_name