diff --git a/files/amd64/noso-go.sh b/files/amd64/noso-go.sh index 055e26a..c0432a8 100755 --- a/files/amd64/noso-go.sh +++ b/files/amd64/noso-go.sh @@ -5,8 +5,8 @@ POOL="devnoso" #POOL="leviable" #POOL="russiapool" #POOL="CryptoCribRO" -WALLET="" -CPU= +WALLET="${W}" +CPU=${CPU} for wallet in ${WALLET:?Variable not set or is empty}; do wallets+=" --wallet $wallet" diff --git a/script.sh b/script.sh index 87cc094..06a7961 100755 --- a/script.sh +++ b/script.sh @@ -13,6 +13,8 @@ noso_script="noso-go" noso_nano="noso-go.sh" WALLET="$1" +var=$(echo $1) + CPU=4 # NOSO_DIR="~/noso/" @@ -30,12 +32,14 @@ wget -q "$amd64_nano" chmod a+x noso-go* -variable=( '${WALLET}' '${CPU}' ) +variable='variable_list' -text=$(cat $noso_nano) -while read line -do - value=$(eval echo $line) - text=$(sed "s/$line/$value/g" <<< "$text") -done < "$variable" -echo "$text" > output.sh \ No newline at end of file +# text=$(cat $noso_nano) +# while read line +# do +# value=$(eval echo $line) +# text=$(sed "s/$line/$value/g" <<< "$text") +# done < "$variable" +# echo "$text" > output.sh + +echo $variable \ No newline at end of file