split ntpdate completion
This commit is contained in:
parent
9188e5396e
commit
a10c98e0fd
@ -8324,37 +8324,6 @@ _getent()
|
|||||||
} &&
|
} &&
|
||||||
complete -F _getent getent
|
complete -F _getent getent
|
||||||
|
|
||||||
# ntpdate(1) completion
|
|
||||||
#
|
|
||||||
have ntpdate &&
|
|
||||||
_ntpdate()
|
|
||||||
{
|
|
||||||
local cur prev
|
|
||||||
|
|
||||||
COMPREPLY=()
|
|
||||||
cur=`_get_cword`
|
|
||||||
prev=${COMP_WORDS[COMP_CWORD-1]}
|
|
||||||
|
|
||||||
case $prev in
|
|
||||||
-k)
|
|
||||||
_filedir
|
|
||||||
return 0
|
|
||||||
;;
|
|
||||||
-U)
|
|
||||||
COMPREPLY=( $( compgen -u $cur ) )
|
|
||||||
return 0
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
if [[ "$cur" == -* ]]; then
|
|
||||||
COMPREPLY=( $( compgen -W '-4 -6 -b -B -d -Q -q -s -u -v -a\
|
|
||||||
-e -k -p -o -r -t' -- $cur ) )
|
|
||||||
else
|
|
||||||
_known_hosts
|
|
||||||
fi
|
|
||||||
} &&
|
|
||||||
complete -F _ntpdate ntpdate
|
|
||||||
|
|
||||||
# sysctl(8) completion
|
# sysctl(8) completion
|
||||||
#
|
#
|
||||||
have sysctl &&
|
have sysctl &&
|
||||||
|
33
contrib/ntpdate
Normal file
33
contrib/ntpdate
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
# -*- mode: shell-script; sh-basic-offset: 8; indent-tabs-mode: t -*-
|
||||||
|
# ex: ts=8 sw=8 noet filetype=sh
|
||||||
|
#
|
||||||
|
# bash completion for ntpdate
|
||||||
|
|
||||||
|
have ntpdate &&
|
||||||
|
_ntpdate()
|
||||||
|
{
|
||||||
|
local cur prev
|
||||||
|
|
||||||
|
COMPREPLY=()
|
||||||
|
cur=`_get_cword`
|
||||||
|
prev=${COMP_WORDS[COMP_CWORD-1]}
|
||||||
|
|
||||||
|
case $prev in
|
||||||
|
-k)
|
||||||
|
_filedir
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
-U)
|
||||||
|
COMPREPLY=( $( compgen -u $cur ) )
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [[ "$cur" == -* ]]; then
|
||||||
|
COMPREPLY=( $( compgen -W '-4 -6 -b -B -d -Q -q -s -u -v -a\
|
||||||
|
-e -k -p -o -r -t' -- $cur ) )
|
||||||
|
else
|
||||||
|
_known_hosts
|
||||||
|
fi
|
||||||
|
} &&
|
||||||
|
complete -F _ntpdate ntpdate
|
Loading…
x
Reference in New Issue
Block a user