summaryrefslogtreecommitdiff
path: root/completions/hexdump
blob: c566f9d625364ede52fbc7c492571e5262db3529 (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
# hexdump(1) completion                                    -*- shell-script -*-

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

    case $prev in
        -V|-e|-n|-s)
            return
            ;;
        -f)
            _filedir
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
        local opts="$( _parse_help "$1" )"
        [[ $opts ]] || opts="$( _parse_usage "$1" )"
        COMPREPLY=( $( compgen -W "$opts" -- "$cur" ) )
        return
    fi

    _filedir
} &&
complete -F _hexdump hexdump hd

# ex: ts=4 sw=4 et filetype=sh