Skip to content

Instantly share code, notes, and snippets.

@helloimalemur
Created November 13, 2022 19:41
Show Gist options
  • Save helloimalemur/a02d8dfdc0eb11848c12f09f23cfd8e6 to your computer and use it in GitHub Desktop.
Save helloimalemur/a02d8dfdc0eb11848c12f09f23cfd8e6 to your computer and use it in GitHub Desktop.
Bash Discord Notification
#!/bin/bash
## first parameter is message
## second parameter is url
WEBHOOK_URL=$2
JSON="{\"content\": \"$1\"}"
curl -d "$JSON" -H "Content-Type: application/json" "$WEBHOOK_URL"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment