Skip to content

Instantly share code, notes, and snippets.

@JuanjoSalvador
Created December 30, 2016 18:52
Show Gist options
  • Select an option

  • Save JuanjoSalvador/c22eab3c75a581e6fd380601376057c1 to your computer and use it in GitHub Desktop.

Select an option

Save JuanjoSalvador/c22eab3c75a581e6fd380601376057c1 to your computer and use it in GitHub Desktop.
Flood a Telegram's chat
# Author: Juanjo Salvador
# Website: http://juanjosalvador.es
# How to execute:
# $ floodogram.sh <@user> <message>
#!/bin/bash
while [ 1 = 1 ];
do
bin/telegram-cli -W -e "msg $1 $2" >> /dev/null
echo "Message sent."
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment