Files
anything-sync-daemon-mirror/common/zsh-completion
2015-01-29 21:59:32 +08:00

13 lines
270 B
Plaintext

#compdef asd anything-sync-daemon
_asd() {
local -a options
options=('p:Preview what asd will do/is doing and printout useful info'
'c:Clean (delete without prompting) ALL crashrecovery dirs for all sync targets')
_describe 'options' options
}
_asd