1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 07:15:22 +02:00

getfacl.md: add page (#1818)

This commit is contained in:
Max Xu 2017-12-21 11:33:34 +08:00 committed by Agniva De Sarker
parent ec05de69b7
commit 708581bb26

15
pages/linux/getfacl.md Normal file
View file

@ -0,0 +1,15 @@
# getfacl
> Get file access control lists.
- Display the file access control list:
`getfacl {{path/to/file_or_folder}}`
- Display the file access control list with numeric user and group IDs:
`getfacl -n {{path/to/file_or_folder}}`
- Display the file access control list with tabular output format:
`getfacl -t {{path/to/file_or_folder}}`