diff options
author | Clint Adams <clint@users.sourceforge.net> | 2009-01-29 16:02:54 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2009-01-29 16:02:54 +0000 |
commit | 268357abc053f0fa9425f32e84a3a9bfb298aebd (patch) | |
tree | a245fec740950e7b7efb906866b2fd5eae66935a /Completion/Cygwin | |
parent | 3bd094b1bc6f7381ee9e003a8fccc645d73c7a22 (diff) | |
download | zsh-268357abc053f0fa9425f32e84a3a9bfb298aebd.tar.gz zsh-268357abc053f0fa9425f32e84a3a9bfb298aebd.tar.xz zsh-268357abc053f0fa9425f32e84a3a9bfb298aebd.zip |
unposted: move _getfacl and _setfacl from Completion/Cygwin/Command to Completion/Unix/Command.
Diffstat (limited to 'Completion/Cygwin')
-rw-r--r-- | Completion/Cygwin/Command/.distfiles | 4 | ||||
-rw-r--r-- | Completion/Cygwin/Command/_getfacl | 11 | ||||
-rw-r--r-- | Completion/Cygwin/Command/_setfacl | 13 |
3 files changed, 2 insertions, 26 deletions
diff --git a/Completion/Cygwin/Command/.distfiles b/Completion/Cygwin/Command/.distfiles index d2622cdd5..eec683b01 100644 --- a/Completion/Cygwin/Command/.distfiles +++ b/Completion/Cygwin/Command/.distfiles @@ -1,7 +1,7 @@ DISTFILES_SRC=' .distfiles _cygcheck _cygpath _cygrunsrv _cygserver -_cygstart _dumper _getclip _getfacl +_cygstart _dumper _getclip _mkshortcut _mkzsh _pscp _putclip -_readshortcut _setfacl +_readshortcut ' diff --git a/Completion/Cygwin/Command/_getfacl b/Completion/Cygwin/Command/_getfacl deleted file mode 100644 index 6c3b9f261..000000000 --- a/Completion/Cygwin/Command/_getfacl +++ /dev/null @@ -1,11 +0,0 @@ -#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' diff --git a/Completion/Cygwin/Command/_setfacl b/Completion/Cygwin/Command/_setfacl deleted file mode 100644 index c87a1d017..000000000 --- a/Completion/Cygwin/Command/_setfacl +++ /dev/null @@ -1,13 +0,0 @@ -#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' |