summaryrefslogtreecommitdiffstats
path: root/completions/tcpnice
blob: b33d7dbb5213c174a043c525cd8775079b97bbf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# tcpnice completion                                       -*- shell-script -*-

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

    case $prev in
        -*i)
            _comp_compgen_available_interfaces -a
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
        _comp_compgen_usage
    fi

} &&
    complete -F _comp_cmd_tcpnice tcpnice

# ex: filetype=sh