astrXbian/www/boris/check_bootstrap_wallet.sh

14 lines
667 B
Bash
Raw Normal View History

2021-08-10 02:06:59 +02:00
#!/bin/bash
########################################################################
# Author: Astrocrew
# Version: 0.1
# License: AGPL-3.0 (https://choosealicense.com/licenses/agpl-3.0/)
########################################################################
G1PUB=$(cat ~/.zen/secret.dunikey | grep 'pub:' | cut -d ' ' -f 2) && [[ ! $G1PUB ]] && echo "ERREUR G1PUB. EXIT" && exit 1
[[ $G1PUB == "" ]] && echo "G1PUB MISSING" && exit 1
YOU=$(ps auxf --sort=+utime | grep -w ipfs | grep -v -E 'color=auto|grep' | tail -n 1 | cut -d " " -f 1) && [[ ! $YOU ]] && echo "ipfs NOT RUNNING. EXIT" && exit 1
~/.zen/astrXbian/zen/jaklis/jaklis.py balance -p $G1PUB
exit 0