mirror of
https://github.com/nahuhh/basicswap-bash.git
synced 2024-11-16 15:57:38 +00:00
11 lines
335 B
Bash
Executable file
11 lines
335 B
Bash
Executable file
#/bin/bash
|
|
# Download updated scripts
|
|
wget -O basicswap-bash.tar.gz https://github.com/nahuhh/basicswap-bash/releases/latest/download/basicswap-bash.tar.gz
|
|
tar xvf basicswap-bash.tar.gz
|
|
cd basicswap-bash
|
|
# Move scripts
|
|
sudo rm -rf /usr/local/bin/bsx
|
|
sudo mv -f basic* bsx* /usr/local/bin/
|
|
# Cleanup install
|
|
cd ..
|
|
rm -rf basicswap-bash
|