find + chmodでパーミッションの一括変更 2006.03.20 Webマスター Webサーバ上のファイルのパーミッション(アクセス権)を一括で変更したい。ということがよくある。 ■一括で、public_html以下のファイルを644へ変更する $ find public_html -type f -print | xargs chmod 644 または、 $ find public_html -type f -exec chmod 644 {} \; ■一括で、public_html以下のディレクトリを755へ変更する $ find public_html -type d -print | xargs chmod 755 または、 $ find public_html -type d -exec chmod 755 {} \; ■SGID(グループIDのs)をとる $ ls -l