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.
我想编写一个别名来执行以下操作:
private () { chmod go-rwx "$@" }
我相信这正是你想要的。它使用 Posix 语法定义了一个 shell 函数,该函数适用于每个 Posix shell,而不仅仅是 bash。它适用于任意数量的文件。
它仅从组和其他人中删除 rwx 权限位,使用户权限与以前一样。