Page tree

Versions Compared

Key

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

...

Code Block
languagebash
getfacl --access ./www.dailyplanet.com/ | sudo setfacl -d -RM - ./www.dailyplanet.com/

getfacl --access generates =  retrieves the details of ACL the permissions applied to the directory only (default permissions are not returned). The details are then piped to setfacl and the parameters read,

...