summaryrefslogtreecommitdiff
path: root/completions/nethogs
blob: 8eeb4ff58c0a5f10f8ce642cc685f7e1e71c4c5c (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