[Bash-completion-commits] ./current r1309: initial import

Guillaume Rousse guillomovitch at zarb.org
Wed Feb 4 20:28:58 UTC 2009


------------------------------------------------------------
revno: 1309
committer: Guillaume Rousse <guillomovitch at zarb.org>
branch nick: current
timestamp: Wed 2009-02-04 21:28:58 +0100
message:
  initial import
added:
  to_review/cowsay
-------------- next part --------------
=== added file 'to_review/cowsay'
--- a/to_review/cowsay	1970-01-01 00:00:00 +0000
+++ b/to_review/cowsay	2009-02-04 20:28:58 +0000
@@ -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



More information about the Bash-completion-commits mailing list