9 lines
215 B
Bash
Executable File
9 lines
215 B
Bash
Executable File
#!/bin/sh
|
|
|
|
/usr/bin/curl -s \
|
|
--form-string "token=$PUSHOVER_TOKEN" \
|
|
--form-string "user=$PUSHOVER_USER" \
|
|
--form-string "title=$1" \
|
|
--form-string "message=$2" \
|
|
https://api.pushover.net/1/messages.json
|