mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-08-19 21:03:25 -07:00
Updated msys2 to msys2-base-x86_64-20200903
This commit is contained in:
parent
5bc8dbdc75
commit
2307d54cb1
18501 changed files with 1684082 additions and 720361 deletions
|
@ -6,41 +6,41 @@ _pgrep()
|
|||
_init_completion || return
|
||||
|
||||
case $prev in
|
||||
-c|-d|--delimiter|-g|--pgroup|-J|-M|-N|-s|--session|-t|--terminal|-T|-z)
|
||||
--delimiter|--pgroup|--session|--terminal|-!(-*)[cdgJMNstTz])
|
||||
return
|
||||
;;
|
||||
--signal)
|
||||
_signals
|
||||
return
|
||||
;;
|
||||
-F|--pidfile)
|
||||
--pidfile|-!(-*)F)
|
||||
_filedir
|
||||
return
|
||||
;;
|
||||
-G|--group)
|
||||
--group|-!(-*)G)
|
||||
_gids
|
||||
return
|
||||
;;
|
||||
-j)
|
||||
COMPREPLY=( $( compgen -W 'any none' -- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W 'any none' -- "$cur") )
|
||||
return
|
||||
;;
|
||||
-P|--parent)
|
||||
--parent|-!(-*)P)
|
||||
_pids
|
||||
return
|
||||
;;
|
||||
-u|--euid|-U|--uid)
|
||||
--euid|--uid|-!(-*)[uU])
|
||||
_uids
|
||||
return
|
||||
;;
|
||||
esac
|
||||
|
||||
if [[ $cur == -* ]]; then
|
||||
local help='$( _parse_help "$1" )'
|
||||
[[ $help ]] || help='$( "$1" --usage 2>&1 |
|
||||
local help=$(_parse_help "$1")
|
||||
[[ $help ]] || help='$("$1" --usage 2>&1 |
|
||||
command sed -e "s/\[-signal\]//" -e "s/\[-SIGNAL\]//" |
|
||||
_parse_usage - )'
|
||||
COMPREPLY=( $( compgen -W "$help" -- "$cur" ) )
|
||||
_parse_usage -)'
|
||||
COMPREPLY=( $(compgen -W "$help" -- "$cur") )
|
||||
[[ $cword -eq 1 && $1 == *pkill ]] && _signals -
|
||||
return
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue