Skip to content

Instantly share code, notes, and snippets.

@ReimuNotMoe
Created February 21, 2018 08:43
Show Gist options
  • Save ReimuNotMoe/60cb95f12d2308ef6190dd203d98bb2c to your computer and use it in GitHub Desktop.
Save ReimuNotMoe/60cb95f12d2308ef6190dd203d98bb2c to your computer and use it in GitHub Desktop.
#!/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