summaryrefslogtreecommitdiff
path: root/completions/badblocks
blob: 2dc8eb4369224544f9f3c6b8ef1c64e22f6be1db (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
# badblocks(8) completion                                  -*- shell-script -*-

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

    case $prev in
        -b|-c|-e|-d|-p|-t)
            return 0
            ;;
        -i|-o)
            _filedir
            return 0
            ;;
    esac

    if [[ "$cur" == -* ]]; then
        COMPREPLY=( $( compgen -W '$( _parse_usage "$1" )' -- "$cur" ) )
        # Filter out -w (dangerous) and -X (internal use)
        for i in ${!COMPREPLY[@]}; do
            [[ ${COMPREPLY[i]} == -[wX] ]] && unset COMPREPLY[i]
        done
        return 0
    fi

    cur=${cur:=/dev/}
    _filedir
} &&
complete -F _badblocks badblocks

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