Skip to content

Instantly share code, notes, and snippets.

@grvoyt
Created September 20, 2019 13:45
Show Gist options
  • Save grvoyt/99dec11beda10084311ada642c2e49f7 to your computer and use it in GitHub Desktop.
Save grvoyt/99dec11beda10084311ada642c2e49f7 to your computer and use it in GitHub Desktop.
#!/bin/bash
#settings
chat_id= //chat_id
api_key= //bot api key
#code
file=$1
url=https://api.telegram.org/bot$api_key/sendDocument
curl -F "chat_id=$chat_id" -F "document=@$file" -X POST $url
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment