summaryrefslogtreecommitdiffstats
path: root/completions/ngrep
blob: 14f39a90fc98977426c4fcab8ae738cf74b08f01 (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
37
38
# ngrep(8) completion                                      -*- shell-script -*-

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

    case $prev in
        -h | -V | -n | -A | -s | -S | -c | -P)
            return
            ;;
        -I | -O)
            _comp_compgen_filedir 'pcap?(ng)'
            return
            ;;
        -d)
            _comp_compgen_available_interfaces -a
            _comp_compgen -a -- -W 'any'
            return
            ;;
        -W)
            _comp_compgen -- -W 'normal byline single none'
            return
            ;;
        -F)
            _comp_compgen_filedir
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
        _comp_compgen_help -- -h
        return
    fi
} &&
    complete -F _comp_cmd_ngrep ngrep

# ex: filetype=sh