Delete Auto.sh

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

14
Auto.sh
View File

@ -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