Skip to content

Instantly share code, notes, and snippets.

@pando85
Created December 22, 2018 09:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pando85/589740c8240fcb3ec599746a7ea1c36c to your computer and use it in GitHub Desktop.
Save pando85/589740c8240fcb3ec599746a7ea1c36c to your computer and use it in GitHub Desktop.
notify to telegram with simple curl
#!/bin/sh
TOKEN=
CHAT_ID=
curl -s -X POST https://api.telegram.org/bot${TOKEN}/sendMessage -d chat_id=$CHAT_ID -d text="$1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment