summaryrefslogtreecommitdiff
path: root/completions/badblocks
blob: a366338cb3044c55c3b5c544bcad0bb14d8330e2 (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
        -*[bcedpt])
            return
            ;;
        -*[io])
            _filedir
            return
            ;;
    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
    fi

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

# ex: filetype=sh