Created
February 21, 2018 08:43
-
-
Save ReimuNotMoe/60cb95f12d2308ef6190dd203d98bb2c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
TOKEN="" | |
USER_ID="" | |
ARGS_EXTRA="" | |
if [ -z "$1" ]; then | |
echo "Usage: `basename $0` <photo_file> [caption]" | |
exit 1 | |
fi | |
if [ "$2" ]; then | |
ARGS_EXTRA="&caption=""$2" | |
fi | |
curl -v "https://api.telegram.org/bot""$TOKEN""/sendPhoto?chat_id=""$USER_ID""$ARGS_EXTRA" -H 'Content-Type: multipart/form-data' -F photo=@"$1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment