mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-09 20:33:34 -08:00
28 lines
594 B
Bash
28 lines
594 B
Bash
# lsscsi(8) completion -*- shell-script -*-
|
|
|
|
_lsscsi()
|
|
{
|
|
local cur prev words cword split
|
|
_init_completion -s || return
|
|
|
|
case $prev in
|
|
--help | --version | -!(-*)[hV]*)
|
|
return
|
|
;;
|
|
--sysfsroot | -!(-*)y)
|
|
_filedir -d
|
|
return
|
|
;;
|
|
esac
|
|
|
|
$split && return
|
|
|
|
if [[ $cur == -* ]]; then
|
|
COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
|
|
[[ ${COMPREPLY-} == *= ]] && compopt -o nospace
|
|
fi
|
|
} &&
|
|
complete -F _lsscsi lsscsi
|
|
|
|
# ex: filetype=sh
|