Skip to content

Instantly share code, notes, and snippets.

@williamsjj
Last active June 6, 2016 23:32
Show Gist options
  • Select an option

  • Save williamsjj/1eb097a187a3edb17ec1a3913e47e58b to your computer and use it in GitHub Desktop.

Select an option

Save williamsjj/1eb097a187a3edb17ec1a3913e47e58b to your computer and use it in GitHub Desktop.
#!/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