27 lines
551 B
Bash
Executable File
27 lines
551 B
Bash
Executable File
#!/bin/bash
|
|
# ___ _ _ _ __
|
|
# / __|| |_ | |_ ___ | '_ \ ___
|
|
# \__ \| _|| \ / _ \| .__// -_)
|
|
# |___/ \__||_||_|\___/|_| \___|
|
|
|
|
## ./script "WALLET_ID"
|
|
|
|
amd64_script="https://git.sthope.dev/sthope/DockerContainer-Noso/raw/branch/master/files/amd64/noso-go"
|
|
amd64_nano="https://git.sthope.dev/sthope/DockerContainer-Noso/raw/branch/master/files/amd64/noso-go.sh"
|
|
|
|
WALLET="$1"
|
|
|
|
# NOSO_DIR="~/noso/"
|
|
NOSO_DIR="noso"
|
|
|
|
clear
|
|
|
|
mkdir -p $NOSO_DIR
|
|
|
|
cd $NOSO_DIR
|
|
|
|
wget -q "$amd64_script"
|
|
wget -q "$amd64_nano"
|
|
|
|
chmod a+x noso-go*
|
|
ls -l |