mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
11 lines
131 B
Bash
Executable File
11 lines
131 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PACKAGE_LIST=""
|
|
|
|
for i in $*
|
|
do
|
|
PACKAGE_LIST=$PACKAGE_LIST" ./_repo/local/"$i"*"
|
|
done
|
|
|
|
sudo pacman -U $PACKAGE_LIST
|