Page History
...
The example above will give the selected <username> read and write access to the folder test. The -X (--remove-file) and -x (--remove) options instead will remove ACL entries (it is not an error to remove an entry which does not exist)instead:
| Code Block | ||||
|---|---|---|---|---|
| ||||
$ setfacl -x user:<username> test/ $ getfacl test/ # file: test # owner: pasmarco # group: csstaff user::rwx group::r-x mask::rwx other::r-x |
...