Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
find . -type d | xargs chmod 770
機能せず、「そのようなファイルまたはディレクトリはありません」と表示される
単純に再帰を行いたい場合は、 を使用します-R。
-R
chmod -R 770 dir_path
これは、あなたの望むことですか:
find . -type d | xargs -I {} chmod -R 770 "{}"
ファイル名のスペースを処理するprint0オプションを使用したいfind
print0
find
find . -type d -print0 | xargs chmod 770
-Rオプションを使用しない理由:
chmod -R 770 dir