Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

23 lignes
472 B

#!/bin/bash
flag=$TMP_PATH/blockchain_bot.flag
if [ -f $flag ];
then
  echo "blockchain_bot is already running !"
  exit 1
fi
touch $flag
cd $APPS_PATH/blockchain
rm -f $DATA_PATH/block_list.txt
php cache.php >> $DATA_PATH/block_list.txt
for BLOCK in GENESIS THE_ANSWER LUCIFER LEET TOPISTO PIZZA HALVING_1 HALVING_2 BIP_91_LOCK BCC SEGWIT_LOCK SEGWIT HURRICANE_1 WHALE201810 BLOCK21E800 LAST
do
  php robot.php $BLOCK >> $DATA_PATH/block_list.txt
done
rm -f $flag