source: projects/vbootstrap/tags/0.0.16/vbuilder-bash-completion.sh @ 486

Revision 486, 1.9 KB checked in by munepi, 14 years ago (diff)

added --unionfs option

Line 
1[ -z "$BASH_VERSION" ] && return
2
3_filedir()
4{
5        local IFS=$'\t\n' xspec #glob
6
7        #glob=$(set +o|grep noglob) # save glob setting.
8        #set -f          # disable pathname expansion (globbing)
9
10        xspec=${1:+"!*.$1"}     # set only if glob passed in as $1
11        COMPREPLY=( ${COMPREPLY[@]:-} $( compgen -f -X "$xspec" -- "$cur" ) \
12                    $( compgen -d -- "$cur" ) )
13        #eval "$glob"    # restore glob setting.
14}
15
16_vbuilder()
17{
18    local opts cur prev first
19    COMPREPLY=()
20    cur="${COMP_WORDS[COMP_CWORD]}"
21    prev="${COMP_WORDS[COMP_CWORD-1]}"
22    first="${COMP_WORDS[1]}"
23
24    ## The basic options we'll complete.
25    options="--version --arch --dist-upgrade --unionfs --target --with-compat32"
26    actions="--clean --build --build-rpm --install-rpm --remove-rpm"
27    opts="$options $actions"
28
29    _arch=$(rpm --eval %_arch)
30
31    in_options=0
32
33    ## Complete the arguments to some of the basic commands.
34    case "${prev}" in
35        --version)
36            if [ "$_arch" = "x86_64" ]; then
37                local running="VineSeed VineSeed_i386 5.0 5.0_i386 4.2_i386"
38            else
39                local running="VineSeed 5.0 4.2"
40            fi
41            COMPREPLY=( $(compgen -W "${running}" -- "${cur}") )
42            ;;
43
44        --arch)
45            local running="i386 ppc x86_64"
46            COMPREPLY=( $(compgen -W "${running}" -- "${cur}") )
47            ;;
48
49        --target)
50            local running="$(cat /usr/lib/rpm/rpmrc | grep arch_canon: | sed -e "s/arch_canon:[[:blank:]]*\(.*\):.*/\1/")"
51            COMPREPLY=( $(compgen -W "${running}" -- "${cur}") )
52            ;;
53
54        --build-rpm)
55            if [ $COMP_CWORD -eq 1 -o "${COMPREPLY+set}" != "set" ]; then
56                _filedir 'src.rpm'
57            fi
58            ;;
59
60        --install-rpm|--remove-rpm)
61            if [ $COMP_CWORD -eq 1 -o "${COMPREPLY+set}" != "set" ]; then
62                _filedir 'rpm'
63            fi
64            ;;
65
66        *)
67            COMPREPLY=($(compgen -W "${opts}" -- "${cur}"))
68            #return 0
69            ;;
70    esac
71
72    if [[ "${cur}" == -* ]] ; then
73        COMPREPLY=($(compgen -W "${opts}" -- "${cur}"))
74        #return 0
75    fi
76
77}
78
79complete -o filenames -o nospace -F _vbuilder vbuilder
80
81### end of file
Note: See TracBrowser for help on using the repository browser.