From e8fd0e30915ad19f0c018e999ef790199e6a98b6 Mon Sep 17 00:00:00 2001 From: smeb y <48400087+a3165458@users.noreply.github.com> Date: Sat, 2 Mar 2024 14:42:17 +0800 Subject: [PATCH] Delete Auto.sh --- Auto.sh | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 Auto.sh diff --git a/Auto.sh b/Auto.sh deleted file mode 100644 index 1e62184..0000000 --- a/Auto.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash -while true -do - ps -ef | grep "node" | grep -v "grep" - if [ "$?" -eq 1 ] - then - echo "process has restarting..." - GOEXPERIMENT=arenas go run ./... - echo "process has been restarted!" - else - echo "process already started!" - fi - sleep 10 - done