2013-03-25 21:37:36 +00:00
|
|
|
_wall_module()
|
|
|
|
{
|
|
|
|
local cur prev OPTS
|
|
|
|
COMPREPLY=()
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
|
|
case $prev in
|
|
|
|
'-t'|'--timeout')
|
|
|
|
COMPREPLY=( $(compgen -W "seconds" -- $cur) )
|
|
|
|
return 0
|
|
|
|
;;
|
2016-11-16 12:22:14 -05:00
|
|
|
'-g'|'--group')
|
|
|
|
COMPREPLY=( $(compgen -A 'group' -- $cur) )
|
|
|
|
return 0
|
|
|
|
;;
|
2013-04-07 11:12:04 +03:00
|
|
|
'-h'|'--help'|'-V'|'--version')
|
|
|
|
return 0
|
|
|
|
;;
|
2013-03-25 21:37:36 +00:00
|
|
|
esac
|
|
|
|
case $cur in
|
|
|
|
-*)
|
2016-12-02 14:11:20 +01:00
|
|
|
OPTS="--group --nobanner --timeout --version --help"
|
2013-03-25 21:37:36 +00:00
|
|
|
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
2013-09-30 15:49:00 +02:00
|
|
|
local IFS=$'\n'
|
2013-03-25 21:37:36 +00:00
|
|
|
compopt -o filenames
|
|
|
|
COMPREPLY=( $(compgen -f -- $cur) )
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
complete -F _wall_module wall
|