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.69.214.173

H O M E


Filename/usr/share/bash-completion/completions/pkgrm
Size1.13 kb
Permissionrw-r--r--
Ownerroot : root
Create time27-Apr-2025 09:54
Last modified07-Apr-2014 22:10
Last accessed05-Jul-2025 20:47
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
# pkgrm completion -*- shell-script -*-
#
# Copyright 2006 Yann Rouillard <[email protected]>

_have pkgrm &&
_pkgrm ()
{
local cur prev words cword
_init_completion || return

# if a spool directory was given
# we must complete with the package
# available in this directory
local spool=/var/sadm/pkg;
local i=$cword
while [[ $((i--)) -gt 0 ]]; do
i=$((i-1));
case "${words[$i]}" in
-s)
spool="${words[$((i+1))]}";
break
;;
esac;
done;

case $prev in
-a | -V)
_filedir
;;
-s | -R)
_filedir -d
;;
-Y)
;;
*)
if [[ ${cur} == -* ]]; then
local opts="-a -A -n -M -R -s -v -V -Y";
COMPREPLY=($(compgen -W "${opts}" -- ${cur}));
return 0;
else
COMPREPLY=($(compgen -W "$(/bin/ls -1 $spool)" -- ${cur}));
return 0;
fi
;;
esac
} &&
complete -F _pkgrm pkgrm

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