📌  相关文章
📜  在 linux 中更改目录、文件和子目录所有者 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:35.904000             🧑  作者: Mango

代码示例1
chown root /u
              Change the owner of /u to "root".

       chown root:staff /u
              Likewise, but also change its group to "staff".

       chown -hR root /u
              Change the owner of /u and subfiles to "root".