Skip to content

Instantly share code, notes, and snippets.

@msk6252
Created December 11, 2017 07:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save msk6252/e943d512507dd57d934574ad78d4d4b8 to your computer and use it in GitHub Desktop.
Save msk6252/e943d512507dd57d934574ad78d4d4b8 to your computer and use it in GitHub Desktop.
マイニングプールかんたん切り替えしぇるすくりぷと
#!/bin/sh
if [ "$1" = "la" ];
then
./cpuminer/minerd --config=./cpuminer/cfg.json
elif [ "$1" = "kanei" ];
then
./cpuminer/minerd --config=./cpuminer/cfg_kanei.json
else
echo "no args"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment