mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
22 lines
535 B
Plaintext
22 lines
535 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# getfacl
|
|
|
|
> Get file access control lists (ACL).
|
|
> More information: <https://manned.org/getfacl>.
|
|
|
|
- Display the file access control list:
|
|
|
|
`getfacl {{path/to/file_or_directory}}`
|
|
|
|
- Display the file access control list with numeric user and group IDs:
|
|
|
|
`getfacl {{[-n|--numeric]}} {{path/to/file_or_directory}}`
|
|
|
|
- Display the file access control list with tabular output format:
|
|
|
|
`getfacl {{[-t|--tabular]}} {{path/to/file_or_directory}}`
|