8 lines
109 B
Bash
Executable File
8 lines
109 B
Bash
Executable File
#!/usr/bin/bash
|
|
until false; do
|
|
echo "Respawning.." >&2
|
|
sleep 1
|
|
reset
|
|
go run ./cmd/realy/.
|
|
done
|