diff --git a/pages/linux/getfacl.md b/pages/linux/getfacl.md new file mode 100644 index 0000000000..da962d8df4 --- /dev/null +++ b/pages/linux/getfacl.md @@ -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}}`