Created
February 22, 2022 08:08
-
-
Save augustin64/a24964496381034b3fde891c802a48da to your computer and use it in GitHub Desktop.
Pipe command output to discord webhooks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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)