blob: 6c3b9f261334c0acae56f703f359ddaee1cbcf54 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#compdef getfacl getfacl.exe
# cygwin 1.5.25
_arguments -s -S \
'(--all -a)'{-a,--all}'[display the filename, owner, group, and ACL of the file]' \
'(--dir -d)'{-d,--dir}'[display the filename, owner, group, and default ACL of the directory]' \
'(--noname -n)'{-n,--noname}'[display user and group IDs instead of names]' \
'(- *)'{-h,--help}'[display help information]' \
'(- *)'{-v,--version}'[display version information]' \
'*: :_files'
|