File: mk-origtargz.bash_completion

package info (click to toggle)
devscripts 2.17.6%2Bdeb9u1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 5,160 kB
  • sloc: perl: 17,543; sh: 8,902; python: 998; makefile: 219; ansic: 11
file content (49 lines) | stat: -rw-r--r-- 1,332 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# /usr/share/bash-completion/completions/mk-origtargz
# Bash command completion for ‘mk-origtargz(1)’.
# Documentation: ‘bash(1)’, section “Programmable Completion”.

shopt -s progcomp

_mk_origtargz_completion () {
    COMPREPLY=()

    local cur="${COMP_WORDS[COMP_CWORD]}"
    local prev="${COMP_WORDS[COMP_CWORD-1]}"

    local opts="--help --verbose --version -v"
    opts+=" --exclude-file --copyright-file"
    opts+=" --package --directory -C"
    opts+=" --copy --symlink --rename --repack --repack-suffix -S"
    opts+=" --compression --copyright-file --unzipopt"

    case "${prev}" in
        --compression)
            local formats=(gzip bzip2 lzma xz)
            COMPREPLY=( $(compgen -W "${formats[*]}" -- "${cur}" ) )
            ;;

        --directory|-C)
            COMPREPLY=( $(compgen -A directory -- "${cur}" ) )
            ;;

        --copyright-file)
            COMPREPLY=( $(compgen -A file -- "${cur}" ) )
            ;;
        --unzipopt)
            COMPREPLY=( $(compgen -W '-Z -a -b -D -j -n' -- "${cur}" ) )
            ;;

        *)
            COMPREPLY=($(compgen -W "${opts}" -- "${cur}" ) )  
            ;;
    esac
}

complete -F _mk_origtargz_completion mk-origtargz


# Local variables:
# coding: utf-8
# mode: shell-script
# End:
# vim: fileencoding=utf-8 filetype=sh :