From 708581bb267ec7b365ffe6baba388cb97b5e186b Mon Sep 17 00:00:00 2001 From: Max Xu Date: Thu, 21 Dec 2017 11:33:34 +0800 Subject: [PATCH] getfacl.md: add page (#1818) --- pages/linux/getfacl.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pages/linux/getfacl.md 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}}`