mirror of
https://github.com/edu4rdshl/linuxscripts.git
synced 2026-07-18 07:34:45 +00:00
9 lines
136 B
Bash
Executable file
9 lines
136 B
Bash
Executable file
#!/usr/bin/bash
|
|
|
|
fshared="/mnt/Shared/bapkgs"
|
|
|
|
if [ -z "$*" ]; then
|
|
cd "$fshared"
|
|
pkgs=$(ls *.pkg.tar.xz)
|
|
sudo pacman -U $pkgs
|
|
fi
|