For commands which support operating on files (i.e. disk images), it is desirable for bash-completion to complete matching file names. It is also desirable to complete on block device symlinks (e.g. under /dev/disk). To complete common use cases, often on canonical device names, continue to try completion using canonical device names, then fall back to matching any file incrementally as Bash does by default.[1] [1]: https://github.com/karelzak/util-linux/issues/842#issuecomment-523450243 Signed-off-by: Kevin Locke <kevin@kevinlocke.name>
98 lines
1.8 KiB
Text
98 lines
1.8 KiB
Text
_fdisk_module()
|
|
{
|
|
local cur prev OPTS
|
|
COMPREPLY=()
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
case $prev in
|
|
'-s'|'--getsz')
|
|
COMPREPLY=( $(compgen -W "$(lsblk -pnro name)" -- $cur) )
|
|
return 0
|
|
;;
|
|
'-b'|'--sector-size')
|
|
COMPREPLY=( $(compgen -W "512 1024 2048 4096" -- $cur) )
|
|
return 0
|
|
;;
|
|
'-c'|'--compatibility')
|
|
COMPREPLY=( $(compgen -W "dos nondos" -- $cur) )
|
|
return 0
|
|
;;
|
|
'-L'|'--color')
|
|
COMPREPLY=( $(compgen -W "auto never always" -- $cur) )
|
|
return 0
|
|
;;
|
|
'--output')
|
|
local prefix realcur OUTPUT_ALL OUTPUT
|
|
realcur="${cur##*,}"
|
|
prefix="${cur%$realcur}"
|
|
OUTPUT_ALL="
|
|
Attrs
|
|
Boot
|
|
Bsize
|
|
Cpg
|
|
Cylinders
|
|
Device
|
|
End
|
|
End-C/H/S
|
|
Flags
|
|
Fsize
|
|
Id
|
|
Name
|
|
Sectors
|
|
Size
|
|
Slice
|
|
Start
|
|
Start-C/H/S
|
|
Type
|
|
Type-UUID
|
|
UUID
|
|
"
|
|
for WORD in $OUTPUT_ALL; do
|
|
if ! [[ $prefix == *"$WORD"* ]]; then
|
|
OUTPUT="$WORD ${OUTPUT:-""}"
|
|
fi
|
|
done
|
|
compopt -o nospace
|
|
COMPREPLY=( $(compgen -P "$prefix" -W "$OUTPUT" -S ',' -- "$realcur") )
|
|
return 0
|
|
;;
|
|
'-u'|'--units')
|
|
COMPREPLY=( $(compgen -W "cylinders sectors" -- $cur) )
|
|
return 0
|
|
;;
|
|
'-C'|'--cylinders'|'-H'|'--heads'|'-S'|'--sectors')
|
|
COMPREPLY=( $(compgen -W "number" -- $cur) )
|
|
return 0
|
|
;;
|
|
'-h'|'--help'|'-v'|'--version'|'-V'|'--list')
|
|
return 0
|
|
;;
|
|
esac
|
|
case $cur in
|
|
-*)
|
|
OPTS="--sector-size
|
|
--protect-boot
|
|
--compatibility
|
|
--color
|
|
--list
|
|
--output
|
|
--type
|
|
--units
|
|
--getsz
|
|
--bytes
|
|
--wipe
|
|
--wipe-partitions
|
|
--cylinders
|
|
--heads
|
|
--sectors
|
|
--help
|
|
--version"
|
|
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
|
|
return 0
|
|
;;
|
|
esac
|
|
compopt -o bashdefault -o default
|
|
COMPREPLY=( $(compgen -W "$(lsblk -pnro name)" -- $cur) )
|
|
return 0
|
|
}
|
|
complete -F _fdisk_module fdisk
|