Skip to content

Instantly share code, notes, and snippets.

@gerardsimons
Created March 15, 2024 04:27
Show Gist options
  • Save gerardsimons/aaeb5c1545fbb4a246dd7815c5209cbf to your computer and use it in GitHub Desktop.
Save gerardsimons/aaeb5c1545fbb4a246dd7815c5209cbf to your computer and use it in GitHub Desktop.
Telegram notification
function telegram_notify
set encoded_text (python -c "import urllib.parse, sys; print(urllib.parse.quote(sys.argv[1]))" "$argv")
curl "https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/sendMessage?chat_id=$TELEGRAM_BOT_CHANNEL&text=$encoded_text"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment