Update Auto.sh

This commit is contained in:
smeb y 2024-03-02 14:35:10 +08:00 committed by GitHub
parent c7bf77b3fa
commit 1636999636
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

28
Auto.sh
View File

@ -1,16 +1,14 @@
#!/bin/bash
while true; do
# 检查node进程是否存在
ps -ef | grep "node" | grep -v "grep"
if [ "$?" -eq 1 ]; then
# 如果node进程不存在输出信息并启动node
echo "Node进程未运行正在尝试重新启动..."
GOEXPERIMENT=arenas go run ./...
echo "Node进程已启动。"
else
# 如果node进程正在运行输出信息
echo "Node进程已经在运行中。"
fi
# 每次检查后休眠10秒
sleep 10
done
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