blob: 29c4e00d6c123a49c64bc188e8f420664839814b (
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
|
# 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
# Filter out -w (dangerous) and -X (internal use)
COMPREPLY=($(compgen -X -[wX] -W '$(_parse_usage "$1")' -- "$cur"))
return
fi
cur=${cur:=/dev/}
_filedir
} &&
complete -F _badblocks badblocks
# ex: filetype=sh
|