To install Docker you will need to do those steps with sudo
or login as root user with sudo -i
Create a Unix user for holding your application
groupadd app
useradd -d /home/app -s `which bash` -g app -m app
#!/usr/bin/env bash | |
# Source script from: https://github.com/grondilu/bitcoin-bash-tools.git | |
source ./bitcoin.sh | |
while read p; do | |
PRIVATE=$(echo $p | sha256sum | cut -f 1 -d " ") | |
P1=$(newBitcoinKey 0x$PRIVATE \ | |
| grep bitcoin\ address \ | |
| head -1 \ |