Skip to content

Instantly share code, notes, and snippets.

@diegogslomp
Last active May 14, 2022 20:09
Show Gist options
  • Save diegogslomp/8940e04a07c003bb0952c27bc29adeb3 to your computer and use it in GitHub Desktop.
Save diegogslomp/8940e04a07c003bb0952c27bc29adeb3 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
CHAT_ID=
TOKEN=
TEXT=$*
URL="https://api.telegram.org/bot${TOKEN}/sendMessage"
curl -s -X POST "${URL}" -d chat_id="${CHAT_ID}" -d text="${TEXT}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment