summaryrefslogtreecommitdiff
path: root/completions/pkgtool
blob: 5adcbaf0cf571d5677579e0c681a524d444144c1 (plain)
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
# Slackware Linux pkgtool completion                       -*- shell-script -*-

_pkgtool()
{
    local cur prev words cword
    _init_completion || return

    case "$prev" in
        --source_dir|--target_dir)
            _filedir -d
            return 0
            ;;
        --sets)
            # argument required but no completions available
            return 0
            ;;
        --source_device)
            COMPREPLY=( $( compgen -f -d -- "${cur:-/dev/}" ) )
            return 0
            ;;
        --tagfile)
            _filedir
            return 0
            ;;
    esac

    if [[ "$cur" == -* ]]; then
        COMPREPLY=( $( compgen -W '--sets --ignore-tagfiles --tagfile
            --source-mounted --source_dir --target_dir --source_device' \
            -- "$cur" ) )
        return 0
    fi
} &&
complete -F _pkgtool pkgtool

# ex: ts=4 sw=4 et filetype=sh