mirror of
https://github.com/edu4rdshl/linuxscripts.git
synced 2026-07-17 23:24:52 +00:00
11 lines
238 B
Bash
Executable file
11 lines
238 B
Bash
Executable file
#!/usr/bin/bash
|
|
|
|
fshared="/mnt/Shared/bapkgs"
|
|
|
|
rm -f "$fshared"/*
|
|
if [ -z "$*" ]; then
|
|
for file in $(ls *.pkg.tar.xz); do $(sudo mv "$file" "$fshared"); done
|
|
exit
|
|
else
|
|
for file in "${@:1}"; do $(sudo mv "$file" "$fshared"); done
|
|
fi
|