mirror of
https://github.com/nahuhh/basicswap-bash.git
synced 2024-12-23 03:59:21 +00:00
11 lines
442 B
Bash
11 lines
442 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
## Prompt for user input
|
||
|
echo -e "\n\nThe following coins can be disabled (case sensitive)\nbitcoin\ndash\nfiro\nlitecoin\nparticl\nPIVX\n"
|
||
|
read -p 'Full name of coin to disable [example: litecoin] ' disablecoin
|
||
|
## Confirm
|
||
|
echo -e "\nDisable $disablecoin on your BasicSwap install, correct? Press any key to continue. CTRL-C to exit"
|
||
|
read
|
||
|
## Disable the coin
|
||
|
basicswap-prepare --datadir=/$SWAP_DATADIR --disablecoin=$disablecoin
|