summaryrefslogtreecommitdiff
path: root/completions/nethogs
blob: 85fc1cb4252697d877879a2964e74fc887cd9e14 (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
# bash completion for nethogs(8)                           -*- shell-script -*-

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

    case "$prev" in
        -d)
            # expect integer value
            COMPREPLY+=( $(compgen -W '{0..9}') )
            compopt -o nospace
            return
            ;;
    esac

    if [[ "$cur" == -* ]]; then
        COMPREPLY=( $(compgen -W '$(_parse_usage "$1" -h)' -- "$cur") )
        return
    fi

    _available_interfaces -a
} &&
complete -F _nethogs nethogs

# ex: filetype=sh