Updated msys2 to msys2-base-x86_64-20200903

This commit is contained in:
Gator96100 2020-09-07 18:14:14 +02:00
commit 2307d54cb1
18501 changed files with 1684082 additions and 720361 deletions

View file

@ -7,22 +7,22 @@ _cpio()
# --name value style option
case $prev in
-H|--format)
COMPREPLY=( $( compgen -W \
'bin odc newc crc tar ustar hpbin hpodc' -- "$cur" ) )
--format|-!(-*)H)
COMPREPLY=( $(compgen -W \
'bin odc newc crc tar ustar hpbin hpodc' -- "$cur") )
return
;;
-E|-F|-I|--file|--pattern-file)
--file|--pattern-file|-!(-*)[EFI])
_filedir
return
;;
-R|--owner)
--owner|-!(-*)R)
_usergroup
return
;;
--rsh-command)
compopt -o filenames
COMPREPLY=( $( compgen -c -- "$cur" ) )
COMPREPLY=( $(compgen -c -- "$cur") )
return
;;
esac
@ -30,23 +30,23 @@ _cpio()
$split && return
if [[ $cword -eq 1 ]]; then
COMPREPLY=( $( compgen -W '-o --create -i --extract -p --pass-through
-? --help --license --usage --version' -- "$cur" ) )
COMPREPLY=( $(compgen -W '-o --create -i --extract -p --pass-through
-? --help --license --usage --version' -- "$cur") )
else
case ${words[1]} in
-o|--create)
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '-0 -a -c -v -A -B -L -V -C -H -M
COMPREPLY=( $(compgen -W '-0 -a -c -v -A -B -L -V -C -H -M
-O -F --file --format --message --null
--reset-access-time --verbose --dot --append
--block-size --dereference --io-size --quiet
--force-local --rsh-command --help --version' \
-- "$cur" ) )
-- "$cur") )
fi
;;
-i|--extract)
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '-b -c -d -f -m -n -r -t -s -u -v
COMPREPLY=( $(compgen -W '-b -c -d -f -m -n -r -t -s -u -v
-B -S -V -C -E -H -M -R -I -F --file --make-directories
--nonmatching --preserve-modification-time
--numeric-uid-gid --rename --list --swap-bytes --swap
@ -55,17 +55,17 @@ _cpio()
--owner --no-preserve-owner --message --force-local
--no-absolute-filenames --sparse --only-verify-crc
--quiet --rsh-command --help --to-stdout --version' \
-- "$cur" ) )
-- "$cur") )
fi
;;
-p*|--pass-through)
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '-0 -a -d -l -m -u -v -L -V -R
COMPREPLY=( $(compgen -W '-0 -a -d -l -m -u -v -L -V -R
--null --reset-access-time --make-directories --link
--quiet --preserve-modification-time --unconditional
--verbose --dot --dereference --owner
--no-preserve-owner --sparse --help --version' \
-- "$cur" ) )
-- "$cur") )
else
_filedir -d
fi