Skip to content

Instantly share code, notes, and snippets.

@augustin64
Created February 22, 2022 08:08
Show Gist options
  • Save augustin64/a24964496381034b3fde891c802a48da to your computer and use it in GitHub Desktop.
Save augustin64/a24964496381034b3fde891c802a48da to your computer and use it in GitHub Desktop.
Pipe command output to discord webhooks
#!/bin/bash
declare -a A=("$@")
[[ -p /dev/stdin ]] && { \
mapfile -t -O ${#A[@]} A; set -- "${A[@]}"; \
}
[[ $1 ]] || exit
WEBHOOK_URL="https://discord.com/api/webhooks/xxxxx/XXXXX"
generate_data () {
cat <<EOF
{
"content": "$@"
}
EOF
}
curl \
-H "Content-Type: application/json" \
-d "$(generate_data $@)" \
$WEBHOOK_URL
@augustin64
Copy link
Author

Example use-case:
cat /dev/urandom | tr -dc "A-Za-z0-9" | tail -n 20 | ./webhook-it.sh
(Send 20 random caracters trough a discord Webhook)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment