File: zsh-completion

package info (click to toggle)
profile-sync-daemon 7.00-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 316 kB
  • sloc: sh: 715; makefile: 70
file content (12 lines) | stat: -rw-r--r-- 265 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
#compdef psd profile-sync-daemon

_psd() {
  local -a options

  options=('p:Preview what psd will do/is doing and printout useful info'
           'c:Clean (delete without prompting) ALL crashrecovery dirs for all profiles')

  _describe 'options' options
}

_psd