util-linux/bash-completion/write

23 lines
380 B
Text
Raw Normal View History

_write_module()
{
local cur
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
case $COMP_CWORD in
1)
COMPREPLY=( $(compgen -u -- $cur) )
return 0
;;
2)
local I TERMS=''
for I in /sys/class/tty/*; do
TERMS+="/dev${I##/sys/class/tty} "
done
COMPREPLY=( $(compgen -W "$TERMS" -- $cur) )
return 0
;;
esac
return 0
}
complete -F _write_module write