K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / usr / share / bash-completion / completions /
server ip : 104.21.89.46

your ip : 172.71.254.222

H O M E


Filename/usr/share/bash-completion/completions/slapt-src
Size1.63 kb
Permissionrw-r--r--
Ownerroot : root
Create time27-Apr-2025 09:54
Last modified07-Apr-2014 22:10
Last accessed05-Jul-2025 14:21
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
# slapt-src(8) completion -*- shell-script -*-

_slapt_src()
{
local cur prev words cword
_init_completion -n : || return

case "$prev" in
--config|-c)
_filedir
return
;;
--search|-s|--postprocess|-p)
# argument required but no completions available
return
;;
esac

if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '$( _parse_help "$1" --help )' -- "$cur" ) )
[[ $COMPREPLY == *= ]] && compopt -o nospace
[[ $COMPREPLY ]] && return
fi

local i t
# search for last action (-i|-w|-b|-f)
for (( i=${#words[@]}-1; i>0; i-- )); do
if [[ ${words[i]} == -@(i|w|f|b|-install|-show|-build|-fetch) ]]; then
t="all"
break
fi
done
if [[ $t != all ]]; then
return
fi

local config="/etc/slapt-get/slapt-srcrc" # default config location
# search for config
for (( i=${#words[@]}-1; i>0; i-- )); do
if [[ ${words[i]} == -@(c|-config) ]]; then
config="${words[i+1]}"
break
fi
done
[[ -r "$config" ]] || return

if [[ "$cur" == *:* ]]; then
local name=${cur%:*}
local version=${cur##*:}
COMPREPLY=( $( slapt-src --config "$config" --search "^$name" 2> \
/dev/null | sed -ne "/^$cur/{s/^$name:\([^ ]*\) .*$/\1/;p}" ) )
else
COMPREPLY=( $( slapt-src --config "$config" --search "^$cur" 2> \
/dev/null | sed -ne "/^$cur/{s/ .*$//;p}" ) )
fi
} && complete -F _slapt_src slapt-src

# ex: ts=4 sw=4 et filetype=sh