mirror of
https://github.com/ysoftdevs/th.git
synced 2026-03-31 14:53:03 +02:00
7 lines
100 B
Bash
Executable File
7 lines
100 B
Bash
Executable File
#!/bin/sh
|
|
|
|
while true; do
|
|
curl -s http://localhost:9090/node-info/ | grep Hostname
|
|
sleep 1
|
|
done
|