Skip to content

Instantly share code, notes, and snippets.

@shawntan
Created March 29, 2016 13:05
Show Gist options
  • Save shawntan/34bb83e15cfd9addcdf8 to your computer and use it in GitHub Desktop.
Save shawntan/34bb83e15cfd9addcdf8 to your computer and use it in GitHub Desktop.
#!/bin/bash
STRING=$(< /dev/stdin)
KEY=
CHAT_ID=
curl -G -i -X GET \
"https://api.telegram.org/bot$KEY/sendMessage?chat_id=$CHAT_ID&parse_mode=Markdown" \
--data-urlencode 'text=`'"$STRING"'`'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment