summaryrefslogtreecommitdiffstats
path: root/completions/pkgtool
blob: faf0130bb4145c1e379c0698ad5badb0a1541fea (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
# Slackware Linux pkgtool completion                       -*- shell-script -*-

_comp_cmd_pkgtool()
{
    local cur prev words cword comp_args
    _comp_initialize -- "$@" || return

    case "$prev" in
        --source_dir | --target_dir)
            _comp_compgen_filedir -d
            return
            ;;
        --sets)
            # argument required but no completions available
            return
            ;;
        --source_device)
            _comp_compgen -c "${cur:-/dev/}" -- -f -d
            return
            ;;
        --tagfile)
            _comp_compgen_filedir
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
        _comp_compgen -- -W '--sets --ignore-tagfiles --tagfile
            --source-mounted --source_dir --target_dir --source_device'
    fi
} &&
    complete -F _comp_cmd_pkgtool pkgtool

# ex: filetype=sh