diff options
author | Doug Kearns <dkearns@users.sourceforge.net> | 2009-01-24 13:59:21 +0000 |
---|---|---|
committer | Doug Kearns <dkearns@users.sourceforge.net> | 2009-01-24 13:59:21 +0000 |
commit | f99436b3a98dfbb86b3dd547d5c58a412b967bd7 (patch) | |
tree | de82ec25ac89d85ea97e923bee3073c1ec88501e /Completion/Cygwin/Command/_setfacl | |
parent | fa322e5464c8d78fa0c3ac83d3032b51d8120938 (diff) | |
download | zsh-f99436b3a98dfbb86b3dd547d5c58a412b967bd7.tar.gz zsh-f99436b3a98dfbb86b3dd547d5c58a412b967bd7.tar.xz zsh-f99436b3a98dfbb86b3dd547d5c58a412b967bd7.zip |
26411: update Cygwin completion functions
Diffstat (limited to 'Completion/Cygwin/Command/_setfacl')
-rw-r--r-- | Completion/Cygwin/Command/_setfacl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Completion/Cygwin/Command/_setfacl b/Completion/Cygwin/Command/_setfacl new file mode 100644 index 000000000..c87a1d017 --- /dev/null +++ b/Completion/Cygwin/Command/_setfacl @@ -0,0 +1,13 @@ +#compdef setfacl setfacl.exe + +# cygwin 1.5.25 + +_arguments -s -S \ + '(-d, --delete)'{-d,--delete}'[delete one or more specified ACL entries]:ACL entry:' \ + '(-f, --file)'{-f,--file}'[set ACL entries for FILE to ACL entries read from a ACL_FILE]:ACL file:_files' \ + '(-m, --modify)'{-m,--modify}'[modify one or more specified ACL entries]:ACL entry:' \ + '(-r, --replace)'{-r,--replace}'[replace mask entry with maximum permissions needed for the file group class]' \ + '(-s, --substitute)'{-s,--substitute}'[substitute specified ACL entries for the \[ACL of FILE\]]:ACL entry:' \ + '(- *)'{-h,--help}'[output usage information and exit]' \ + '(- *)'{-v,--version}'[output version information and exit]' \ + '*: :_files' |