Created
December 30, 2016 18:52
-
-
Save JuanjoSalvador/c22eab3c75a581e6fd380601376057c1 to your computer and use it in GitHub Desktop.
Flood a Telegram's chat
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
| # 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