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.
例如,如果我要尝试更改目录中特定文件类型的权限
chmod ugo-w *.filetype
我怎样才能对包含目录中的所有文件执行此操作?
使用 find 和 xargs:
find . -type f -name '*.filetype' | xargs chmod ugo-w
.如果不是当前目录,则替换为目录的名称。
.
或者,只需使用find:
find
find . -type f -name '*.filetype' -exec chmod ugo-w '{}' '+'