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