From 316270d4b085fa523c4c23cd01d312c7e33d890f Mon Sep 17 00:00:00 2001 From: smeb y <48400087+a3165458@users.noreply.github.com> Date: Sat, 2 Mar 2024 14:32:08 +0800 Subject: [PATCH] Update Auto.sh --- Auto.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Auto.sh b/Auto.sh index 9e8f1b8..9ac641f 100644 --- a/Auto.sh +++ b/Auto.sh @@ -1,8 +1,8 @@ #!/bin/bash while true; do # 检查node进程是否存在 - pgrep node > /dev/null - if [ $? -ne 0 ]; then + ps -ef | grep "node" | grep -v "grep" + if [ "$?" -eq 1 ]; then # 如果node进程不存在,输出信息并启动node echo "Node进程未运行,正在尝试重新启动..." GOEXPERIMENT=arenas go run ./...