Last active
June 6, 2016 23:32
-
-
Save williamsjj/1eb097a187a3edb17ec1a3913e47e58b 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/bash | |
| i="0" | |
| while [ $i -lt 1000 ] | |
| do | |
| echo "{\"yo$i\":$i}" | netcat -c localhost 3132 | |
| i=$[$i+1] | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment