4a135b33b7
* upgraded to subversion bash completion script shipped with subversion 1.6.17 * added git bash completion script shipped with git 1.7.5.4 * readded bash completion to the image git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42257 a95241bf-73f2-0310-859d-f6bbb57e9c96
58 lines
1.5 KiB
Bash
58 lines
1.5 KiB
Bash
# bash completion for FreeBSD portupgrade package
|
|
|
|
have portupgrade &&
|
|
_portupgrade()
|
|
{
|
|
local cur pkgdir prev
|
|
|
|
pkgdir=${PKG_DBDIR:-/var/db/pkg}/
|
|
_get_comp_words_by_ref cur prev
|
|
|
|
[[ "$prev" == -l || "$prev" == -L || "$prev" == -o ]] && return 0
|
|
|
|
COMPREPLY=( $( compgen -d "$pkgdir$cur" ) )
|
|
COMPREPLY=( ${COMPREPLY[@]#$pkgdir} )
|
|
COMPREPLY=( ${COMPREPLY[@]%-*} )
|
|
|
|
return 0
|
|
} &&
|
|
complete -F _portupgrade -o dirnames portupgrade
|
|
|
|
have portinstall &&
|
|
_portinstall()
|
|
{
|
|
local cur portsdir prev indexfile
|
|
local -a COMPREPLY2
|
|
|
|
portsdir=${PORTSDIR:-/usr/ports}/
|
|
_get_comp_words_by_ref cur prev
|
|
# First try INDEX-5
|
|
indexfile=$portsdir/INDEX-5
|
|
# Then INDEX if INDEX-5 does not exist or system is not FreeBSD 5.x
|
|
[[ "${OSTYPE%.*}" == freebsd5 && -f $indexfile ]] ||
|
|
indexfile=$portsdir/INDEX
|
|
|
|
[[ "$prev" == -l || "$prev" == -L || "$prev" == -o ]] && return 0
|
|
|
|
COMPREPLY=( $( command grep -E "^$cur" < $indexfile | cut -d'|' -f1 ) )
|
|
COMPREPLY2=( $( command grep -E "^[^\|]+\|$portsdir$cur" < $indexfile | \
|
|
cut -d'|' -f2 ) )
|
|
COMPREPLY2=( ${COMPREPLY2[@]#$portsdir} )
|
|
COMPREPLY=( "${COMPREPLY[@]}" "${COMPREPLY2[@]}" )
|
|
|
|
return 0
|
|
} &&
|
|
complete -F _portinstall -o dirnames portinstall
|
|
|
|
# _pkg_delete is in pkg_install
|
|
type _pkg_delete &>/dev/null && have pkg_deinstall && \
|
|
complete -F _pkg_delete -o dirnames pkg_deinstall
|
|
|
|
# Local variables:
|
|
# mode: shell-script
|
|
# sh-basic-offset: 4
|
|
# sh-indent-comment: t
|
|
# indent-tabs-mode: nil
|
|
# End:
|
|
# ex: ts=4 sw=4 et filetype=sh
|