1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-22 11:51:04 +02:00

16540: short options and local files

This commit is contained in:
Clint Adams 2002-02-03 06:12:34 +00:00
parent 29b704202a
commit 1dd643b016
2 changed files with 25 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-02-03 Clint Adams <clint@zsh.org>
* 16540: Completion/Unix/Command/_rsync: include short options and
local files.
2002-02-01 Oliver Kiddle <opk@zsh.org>
* Akinori Musha: 16534: Completion/BSD/Command/_bsd_pkg:

View File

@ -1,5 +1,24 @@
#compdef rsync
_arguments -- '*=COMMAND*:command:_command' \
_arguments -C -s \
'*:local files:_files' \
'(--verbose)-v[verbose]' \
'(--quiet)-q[quiet]' \
'(--checksum)-c[checksum]' \
'(--archive)-a[archive]' \
'(--recursive)-r[recursive]' \
'(--backup)-b[backup]' \
'(--update)-u[update]' \
'(--links)-l[links]' \
'(--perms)-p[perms]' \
'(--owner)-o[owner]' \
'(--group)-g[group]' \
'(--times)-t[times]' \
'(--dry-run)-n[dry-run]' \
'(--one-file-system)-x[one-file-system]' \
'(--rsh)-e[rsh command]:remote command:(rsh ssh)' \
'(--compress)-z[compress]' \
'(--help)-h[help]' \
-- '*=COMMAND*:command:_command' \
'*=FILE*:file:_files' \
'*=DIR*:directory:_files -/'