LoginSignup
62
56

More than 5 years have passed since last update.

Linuxコマンドのお勉強 再帰的にパーミッションを変更

Last updated at Posted at 2018-05-20

chmodで再帰的にパーミッションを変更

chmod -R 777 .

このコマンドだと全てのファイル・ディレクトリが変更されてしまう。

findを使用して再帰的にパーミッションを変更

ディレクトリのみ

find . -type d -exec chmod 777 \{\} \;

ファイルのみ

find . -type f -exec chmod 777 \{\} \;

拡張子指定

find . -type f -name '*.sh' -exec chmod 777 \{\} \;
62
56
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
62
56