Sophie

Sophie

distrib > Mandriva > 9.1 > ppc > by-pkgid > ad12632f0fc88b4b3f0a2717822ee1b8 > files > 7

bash-completion-20030209-1mdk.noarch.rpm

# BitKeeper completion adapted from code by  Bart Trojanowski <bart@jukie.net>
#
# $Id: bitkeeper,v 1.2 2002/06/12 22:03:23 ianmacd Exp $
#

_bk() {
	local BKCMDS

	COMPREPLY=()
	cur=${COMP_WORDS[COMP_CWORD]}

	BKCMDS="$( bk help topics | grep '^  bk' | cut -d ' ' -f 4 | \
		   xargs echo )"

	COMPREPLY=( $( compgen -W "$BKCMDS" -- "$cur" ) )
	_filedir

	return 0
}
complete -F _bk bk