
setfacl
List of commands for setfacl:
-
setfacl:tldr:089f5 setfacl: Remove all ACL entries of a file.$ setfacl -b ${file}try on your machineexplain this command
-
setfacl:tldr:1c2f6 setfacl: Modify ACL of a file for user with read and write access.$ setfacl -m u:${username}:rw ${file}try on your machineexplain this command
-
setfacl:tldr:79c00 setfacl: Remove ACL of a file for a user.$ setfacl -x u:${username} ${file}try on your machineexplain this command
-
setfacl:tldr:ae9e3 setfacl: Modify default ACL of a file for all users.$ setfacl -d -m u::rw ${file}try on your machineexplain this command