Update webhook.sh
Added a command block
This commit is contained in:
parent
14b6c7730c
commit
3d42e83e3e
10
webhook.sh
10
webhook.sh
@ -1,15 +1,19 @@
|
||||
#!/bin/bash
|
||||
WEBHOOK='https://discord.com/api/webhooks/1338109049413308526/YOURWEBHOOKHEREDARLING'
|
||||
|
||||
begin="Command result:
|
||||
\`\`\`
|
||||
"
|
||||
|
||||
ending="
|
||||
\`\`\`
|
||||
<@635539351324983374>
|
||||
-# Sent from $(hostname) @ $(date)"
|
||||
|
||||
#Read from pipe
|
||||
while read content;
|
||||
do
|
||||
MSG=$(jq -n -r --arg msg "$content $ending" '{content: $msg}')
|
||||
echo $MSG
|
||||
MSG=$(jq -n -r --arg msg "$begin$content$ending" '{content: $msg}')
|
||||
done
|
||||
|
||||
curl -X POST -H "Content-Type: application/json" --data "$MSG" $WEBHOOK
|
||||
curl -X POST -H "Content-Type: application/json" --data "$MSG" $WEBHOOK
|
||||
|
Loading…
x
Reference in New Issue
Block a user