initial import
This commit is contained in:
parent
ef476b5225
commit
ffa55f44e9
26
to_review/cowsay
Normal file
26
to_review/cowsay
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# -*- mode: shell-script; sh-basic-offset: 8; indent-tabs-mode: t -*-
|
||||||
|
# ex: ts=8 sw=8 noet filetype=sh
|
||||||
|
#
|
||||||
|
# bash completion for cowsay
|
||||||
|
|
||||||
|
have cowsay &&
|
||||||
|
_cowsay()
|
||||||
|
{
|
||||||
|
local cur prev
|
||||||
|
|
||||||
|
COMPREPLY=()
|
||||||
|
cur=${COMP_WORDS[COMP_CWORD]}
|
||||||
|
prev=${COMP_WORDS[COMP_CWORD-1]}
|
||||||
|
|
||||||
|
case $prev in
|
||||||
|
-f)
|
||||||
|
COMPREPLY=( $( cowsay -l | tail -n +2 | tr " " "\n" | grep "^$cur" ) )
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# relevant options completion
|
||||||
|
COMPREPLY=( $( compgen -W '-b -d -g -p -s -t -w -y -e -f -h -l -n -T -W' -- $cur ) )
|
||||||
|
|
||||||
|
} &&
|
||||||
|
complete -F _cowsay cowsay cowthink
|
Loading…
x
Reference in New Issue
Block a user