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.70.80.236 H O M E |
Filename | /usr/share/bash-completion/completions/pkgrm |
Size | 1.13 kb |
Permission | rw-r--r-- |
Owner | root : root |
Create time | 27-Apr-2025 09:54 |
Last modified | 07-Apr-2014 22:10 |
Last accessed | 05-Jul-2025 20:47 |
Actions | edit | rename | delete | download (gzip) |
View | text | 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
#
# 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