mirror of
https://github.com/nahuhh/basicswap-bash.git
synced 2024-11-16 15:57:38 +00:00
10 lines
458 B
Bash
Executable file
10 lines
458 B
Bash
Executable file
#!/bin/bash
|
|
|
|
## Prompt for user input
|
|
printf "\n\nThe following coins can be disabled (case sensitive)\nbitcoin\ndash\ndecred\nfiro\nlitecoin\nmonero\npivx\nwownero\n\n"
|
|
read -p 'Full name of coin to disable [example: wownero] ' disablecoin
|
|
## Confirm
|
|
printf "\nDisable $disablecoin on your BasicSwap install, correct? Press any key to continue. CTRL-C to exit\n"
|
|
read
|
|
## Disable the coin
|
|
basicswap-prepare --datadir=$SWAP_DATADIR --disablecoin=$disablecoin
|