File: zsh-completion

package info (click to toggle)
grml-debootstrap 0.123
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 464 kB
  • sloc: sh: 2,562; python: 165; makefile: 72; ansic: 49
file content (22 lines) | stat: -rw-r--r-- 1,471 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#compdef grml-debootstrap

# Filename:      /usr/share/zsh/vendor-completions/_grml-debootstrap
# Purpose:       zsh completion for grml-debootstrap
# Authors:       grml-team (grml.org), (c) Frank Terbeck <ft@grml.org>, (c) Michael Prokop <mika@grml.org>
# Bug-Reports:   see https://grml.org/bugs/
# License:       This file is licensed under the GPL v2.
################################################################################

_arguments -s                                                                                   \
  '(-h --help)'{-h,--help}'[display usage information]:'                                        \
  '(-v --version)'{-v,--version}'[display version information]:'                                \
  '(-m --mirror)'{-m,--mirror}'[specify Debian mirror]:mirror'                                  \
  '(-r --release)'{-r,--release}'[specify the release name of the new system]:release'          \
  '(-t --target)'{-t,--target}'[target partition or directory]:device or directory:_path_files' \
  '--hostname[specify hostname for target system]:hostname'                                     \
  '--grub[installation device for grub]:device or directory:_path_files'                        \
  '--password[specify password for root user]:password'                                         \
  '--bootappend[appendline for kernel]:kernel-options'

## END OF FILE #################################################################
# vim:ft=zsh