Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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).:

Code Block
languagebash
themeRDark
$ setfacl -x user:<username> test/

$ getfacl test/
# file: test
# owner: pasmarco
# group: csstaff
user::rwx
group::r-x
mask::rwx
other::r-x

...