Files
2025-09-19 14:14:14 +08:00

16 lines
339 B
Bash
Executable File

#!/bin/sh
text="$1"
token=$2
curl --retry 10 -4 -Ss -X POST \
-H 'Content-Type: application/json' \
-d '{"token": "'"${IM_NOTIFY_CHANNEL_PUSHPLUS_TOKEN}"'", "content": "'"${text}"'", "title": "NATMap"}' \
"http://www.pushplus.plus/send"
if [ $? -eq 0 ]; then
echo "Send pushplus success"
else
echo "Send pushplus failed"
exit 1
fi