tldr/pages/linux/getfacl.md

17 lines
429 B
Markdown
Raw Normal View History

2017-12-21 03:33:34 +00:00
# getfacl
> Get file access control lists (ACL).
> More information: <https://manned.org/getfacl>.
2017-12-21 03:33:34 +00:00
- Display the file access control list:
`getfacl {{path/to/file_or_directory}}`
2017-12-21 03:33:34 +00:00
- Display the file access control list with [n]umeric user and group IDs:
2017-12-21 03:33:34 +00:00
`getfacl --numeric {{path/to/file_or_directory}}`
2017-12-21 03:33:34 +00:00
- Display the file access control list with [t]abular output format:
2017-12-21 03:33:34 +00:00
`getfacl --tabular {{path/to/file_or_directory}}`