特定フォルダ以下の~.bashだけをchmodとかchownしたいとき
カレントディレクトリ以下の~.bashファイルのアクセス権を700に変更する
find ./ -name "*.bash" | xargs chmod 700
カレントディレクトリ以下の~.bashファイルの所有者をroot:rootに変更する
find ./ -name "*.bash" | xargs chown root:root
Go to list of users who liked
More than 5 years have passed since last update.
特定フォルダ以下の~.bashだけをchmodとかchownしたいとき
find ./ -name "*.bash" | xargs chmod 700
find ./ -name "*.bash" | xargs chown root:root
Register as a new user and use Qiita more conveniently
Go to list of users who liked