mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 06:57:15 +08:00
11 lines
131 B
Bash
11 lines
131 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
PACKAGE_LIST=""
|
||
|
|
||
|
for i in $*
|
||
|
do
|
||
|
PACKAGE_LIST=$PACKAGE_LIST" ./_repo/local/"$i"*"
|
||
|
done
|
||
|
|
||
|
sudo pacman -U $PACKAGE_LIST
|