Guest User

Untitled

a guest
Apr 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. WEBHOOK_URL="put your url here"
  4. PING="<@put your user id here>"
  5. MESSAGE="$PING reminder"
  6. JSON="{\"content\": \"$MESSAGE\"}"
  7.  
  8. curl -d "$JSON" -H "Content-Type: application/json" "$WEBHOOK_URL"
Add Comment
Please, Sign In to add comment