GDSLEEP=80;SLEEP=6;END=2;for i in `seq 1 $END`; do echo LOOP $i/$END ; echo "Glow discharge ..."; /golem/daemon/interfaces/golemctl glow_discharge --gas=H --initiate;sleep $GDSLEEP;/golem/daemon/interfaces/golemctl glow_discharge --terminate; for j in `seq 1 $SLEEP`; do echo chance to stop before discharge $(($SLEEP-$j));sleep 1s;done;echo "Discharge ..."; /golem/daemon/interfaces/golemctl discharge --UBt=800 --Ucd=$((175+$i*25)) --preionization=1 --comment="Test Ucd loop $i/$END"; for j in `seq 1 $SLEEP`; do echo chance to stop after discharge $(($SLEEP-$j));sleep 1s;done; done