Guest User

XMG Pool Hopper for Linux

a guest
May 5th, 2018
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.02 KB | None | 0 0
  1. #!/bin/bash
  2. clear;
  3. echo "<------------------------------------------------------------------------------>"
  4. echo "Which pool would you like to mine on today?";
  5. echo "[M] for Minerclaim, [T] for Trasmamod, [P] for pom.m-hash.com, or [S] for Solo";
  6. echo "<------------------------------------------------------------------------------>"
  7. read input;
  8. clear;
  9. if [[ $input == "M" || $input == "m" ]]; then
  10.         ./m-minerd -o stratum+tcp://xmg.minerclaim.net:3333 -u [username] -p [password] -e [efficiency];
  11. elif [[ $input == "T" || $input == "t" ]]; then
  12.         ./m-minerd -o stratum+tcp://magi.trasmamod.com:3333 -u [username] -p [password] -e [efficiency];
  13. elif [[ $input == "P" || $input == "p" ]]; then
  14.         echo "This option has not been configured yet. Please configure this script and try again."
  15. elif [[ $input == "S" || $input == "s" ]]; then
  16.         echo "This option has not been configured yet. Please configure this script and try again."
  17. else
  18.         echo "That was not a valid response. Please try again."
  19. fi
Advertisement
Add Comment
Please, Sign In to add comment