Advertisement
Guest User

transmission to pushover notification

a guest
Oct 30th, 2014
687
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.24 KB | None | 0 0
  1. #!/bin/sh
  2. curl -s \
  3.   -F "token=<token>" \
  4.   -F "user=<user>" \
  5.   -F "message=Transmission finished downloading $TR_TORRENT_NAME on $TR_TIME_LOCALTIME" \
  6.   -F "title=$TR_TORRENT_NAME Completed" \
  7.   https://api.pushover.net/1/messages.json
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement