uptime-kuma/extra/push-examples/bash-curl/index.sh
2023-09-13 20:03:12 +08:00

10 lines
186 B
Bash

#!/bin/bash
PUSH_URL="https://example.com/api/push/key?status=up&msg=OK&ping="
INTERVAL=60
while true; do
curl -s -o /dev/null $PUSH_URL
echo "Pushed!"
sleep $INTERVAL
done