2014-11-02 一括でディレクトリ以下のパーミッションを変更するメモ Linux 一括で dirpath 以下のディレクトリのパーミッションを変更する 忘れるんでメモ $ find dirpath -type d -print | xargs chmod 755 一括で dirpath 以下のファイルのパーミッションを変更する $ find dirpath -type f -print | xargs chmod 644 参考 http://ext.omo3.com/webmaster/chmod.html