ディレクトリ配下のパーミッションを変更します。
chmod -R 777 .
findを使用して再帰的にパーミッションを変更する
find
のオプションで-type d
でディレクトリ、-type d
でファイルのパーミッションを変更します。
ディレクトリだけをパーミッション変更する。
find . -type d -exec chmod 777 \{\} \;
ファイルだけをパーミッション変更する。
find . -type f -exec chmod 777 \{\} \;