add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

20
pages.zh/linux/setfacl.md Normal file
View File

@@ -0,0 +1,20 @@
# setfacl
> 设置文件访问控制列表 (ACL)。
> 更多信息:<https://manned.org/setfacl>。
- [M]odify ACL of a file for user with read and write access:
`setfacl --modify u:{{用户名}}:rw {{文件或目录的路径}}`
- [M]odify [d]efault ACL of a file for all users:
`setfacl --modify --default u::rw {{文件或目录的路径}}`
- Remove ACL of a file for a user:
`setfacl --remove u:{{用户名}} {{文件或目录的路径}}`
- Remove all ACL entries of a file:
`setfacl --remove-all {{文件或目录的路径}}`