mirror of
https://github.com/erkin/ponysay
synced 2024-11-16 08:27:58 +00:00
35 lines
1.2 KiB
Bash
35 lines
1.2 KiB
Bash
# bash completion for ponysay -*- shell-script -*-
|
|
|
|
_ponysay()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion -n = || return
|
|
|
|
options='--version --help --list --altlist --pony --wrap --quote --balloonlist --balloon --file ++file ++pony ++list ++altlist'
|
|
COMPREPLY=( $( compgen -W "$options" -- "$cur" ) )
|
|
|
|
if [ $prev = "-f" ] || [ $prev = "--pony" ] || [ $prev = "--file" ]; then
|
|
ponies=$('/usr/bin/ponysay' --onelist)
|
|
COMPREPLY=( $( compgen -W "$ponies" -- "$cur" ) )
|
|
|
|
elif [ $prev = "-F" ] || [ $prev = "++pony" ] || [ $prev = "++file" ]; then
|
|
extraponies=$('/usr/bin/ponysay' ++onelist)
|
|
COMPREPLY=( $( compgen -W "$extraponies" -- "$cur" ) )
|
|
|
|
elif [ $prev = "-q" ] || [ $prev = "--quote" ]; then
|
|
quoters=$('/usr/bin/ponysay' --quoters)
|
|
COMPREPLY=( $( compgen -W "$quoters" -- "$cur" ) )
|
|
|
|
elif [ $prev = "-b" ] || [ $prev = "--balloon" ] || [ $prev = "--bubble" ]; then
|
|
balloons=$('/usr/bin/ponysay' --balloonlist)
|
|
COMPREPLY=( $( compgen -W "$balloons" -- "$cur" ) )
|
|
|
|
elif [ $prev = "-W" ] || [ $prev = "--wrap" ]; then
|
|
cols=$(( `stty size | cut -d ' ' -f 2` - 10 ))
|
|
COMPREPLY=( $cols $(( $cols / 2 )) 100 60 )
|
|
|
|
fi
|
|
}
|
|
|
|
complete -o default -F _ponysay ponysay
|
|
|