summaryrefslogblamecommitdiffstats
path: root/bash-completion/wall
blob: d3cbbd56a9dfead8f551f3d4a6be7c6df870e1f8 (plain) (tree)























                                                                                
_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
			;;
	esac
	case $cur in
		-*)
			OPTS="-n --nobanner -t --timeout -V --version -h --help"
			COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
			return 0
			;;
	esac
	compopt -o filenames
	COMPREPLY=( $(compgen -f -- $cur) )
	return 0
}
complete -F _wall_module wall