Sfoglia il codice sorgente

no compilation in while loop

Paul Klumpp 11 anni fa
parent
commit
11fd53140c
1 ha cambiato i file con 18 aggiunte e 0 eliminazioni
  1. 18 0
      start_cmp_qwbot.sh

+ 18 - 0
start_cmp_qwbot.sh

@@ -0,0 +1,18 @@
+#!/bin/bash
+
+BOTPATH="$(pwd)"
+LIBPATH="$BOTPATH/libqwclient/"
+if [ "$(which realpath)" != "" ]; then
+	LIBPATH="$(realpath $LIBPATH)"
+fi
+
+echo BOTPATH: "$BOTPATH"
+echo LIBPATH: "$LIBPATH"
+
+while [ 1 ]; do
+	echo "started at $(date)" | tee -a runlog.log
+	LD_LIBRARY_PATH="$LIBPATH" stdbuf -oL ./cimsqwbot | tee -a runlog.log
+	echo "crashed at $(date) - lol, we never crash." | tee -a runlog.log
+
+	sleep 3
+done