LoginSignup
5
4

More than 5 years have passed since last update.

特定の拡張子ファイルの権限を変更する

Posted at

特定フォルダ以下の~.bashだけをchmodとかchownしたいとき

カレントディレクトリ以下の~.bashファイルのアクセス権を700に変更する
find ./ -name "*.bash" | xargs chmod 700
カレントディレクトリ以下の~.bashファイルの所有者をroot
find ./ -name "*.bash" | xargs chown root:root
5
4
0

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
5
4