Created
July 23, 2017 03:12
-
-
Save pointbiz/c9d7e4c3a69832944a92f43df6332481 to your computer and use it in GitHub Desktop.
This file contains 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 | |
/root/./bitcoin-cli -datadir=/root/.bitcoin stop | |
echo Do not shut down the device until notified | |
x=$(pgrep -f bitcoind) | |
while [ "$x" != "" ] | |
do | |
echo -n "." | |
sleep 1s | |
x=$(pgrep -f bitcoind) | |
done | |
echo "bitcoin has stopped. OK to shutdown" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment