hddtemp: New completion.

This commit is contained in:
Ville Skyttä 2011-06-02 10:52:36 +03:00
parent 8f3777e278
commit f1d5758c76
4 changed files with 68 additions and 0 deletions

View File

@ -55,6 +55,7 @@ bashcomp_DATA = abook \
gpg \ gpg \
gpg2 \ gpg2 \
gzip \ gzip \
hddtemp \
heimdal \ heimdal \
hping2 \ hping2 \
htpasswd \ htpasswd \

46
completions/hddtemp Normal file
View File

@ -0,0 +1,46 @@
# hddtemp(8) completion
have hddtemp || return
_hddtemp()
{
local cur prev words cword split
_init_completion -s || return
case $prev in
-f|--file)
_filedir db
return
;;
-l|--listen)
_ip_addresses
return
;;
-u|--unit)
COMPREPLY=( $( compgen -W 'C F' -- "$cur" ) )
return
;;
-p|--port|-s|--separator|-S|--syslog|-v|--version|-h|-\?|--help)
return
;;
esac
$split && return
if [[ $cur == -* ]]; then
COMPREPLY=( $( compgen -W '$( _parse_help "$1" ) --help' -- "$cur" ) )
[[ $COMPREPLY == *= ]] && compopt -o nospace
else
cur=${cur:=/dev/}
_filedir
fi
} &&
complete -F _hddtemp hddtemp
# Local variables:
# mode: shell-script
# sh-basic-offset: 4
# sh-indent-comment: t
# indent-tabs-mode: nil
# End:
# ex: ts=4 sw=4 et filetype=sh

View File

@ -0,0 +1 @@
assert_source_completions hddtemp

View File

@ -0,0 +1,20 @@
proc setup {} {
save_env
}
proc teardown {} {
assert_env_unmodified
}
setup
assert_complete_any "hddtemp -"
sync_after_int
teardown