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-rw 12 个不同的 gif 和 jpg 文件,以便 python 终端可以访问它们我必须为每个人都这样做吗?是否可以一次授予多个文件的 rw 权限?
您可以通过在选项之后将所有文件作为附加参数提供给 chmod 来一次完成所有操作,例如:
chmod ugo+rw file1 file2 file3 file4 ...