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