mirror of
https://github.com/kenzok8/small-package.git
synced 2026-01-13 19:05:06 +08:00
16 lines
339 B
Bash
Executable File
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 |