Skip to content

Instantly share code, notes, and snippets.

@ifahadone
Last active December 1, 2021 19:45
Show Gist options
  • Save ifahadone/0c5c8e086c357c247aa8b138d1fb844a to your computer and use it in GitHub Desktop.
Save ifahadone/0c5c8e086c357c247aa8b138d1fb844a to your computer and use it in GitHub Desktop.
Send Message To Telegram From Shell/Terminal
# Dependency : `Curl` must be preinstalled
tgm () {
TOKEN="XXXX"
ID="-000000"
URL="https://api.telegram.org/bot$TOKEN/sendMessage"
MSG="$@"
process_msg=${MSG// /_}
curl -s -X POST $URL -d chat_id=$ID -d text="MSG : $process_msg"
}
tgm hello world
@ifahadone
Copy link
Author

Replace
TOKEN="your-token"
ID="your-id"

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