initial import

This commit is contained in:
Guillaume Rousse 2009-02-04 21:28:58 +01:00
parent ef476b5225
commit ffa55f44e9

26
to_review/cowsay Normal file
View 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