Last active
November 6, 2019 16:36
-
-
Save gvvynplaine/9d2a6ee54f388826c7efced0bf4d9d56 to your computer and use it in GitHub Desktop.
minergate-cli
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo AEON, BCN, ETC, ETH, XMC, XMR, ZEC | |
read -p "Input email": email | |
read -p "Input coin": coin | |
read -p "Input threads": threads | |
read -p "Input gpu": gpu | |
if [ $gpu == "yes" ] | |
then minergate-cli --user $email --$coin $threads --gpu | |
fi | |
if [ $gpu == "no" ] | |
then minergate-cli --user $email --$coin $threads | |
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
echo AEON, BCN, ETC, ETH, XMC, XMR, ZEC | |
set /p email=Input email: | |
set /p coin=Input coin: | |
set /p threads=Input threads: | |
set /p gpu=Use gpu: | |
if %gpu%==yes minergate-cli --user %email% --%coin% %threads% --gpu | |
if %gpu%==no minergate-cli --user %email% --%coin% %threads% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment