Skip to content

Instantly share code, notes, and snippets.

@glennblock
Last active October 4, 2015 19:14
Show Gist options
  • Select an option

  • Save glennblock/76da4093fd80c14319ea to your computer and use it in GitHub Desktop.

Select an option

Save glennblock/76da4093fd80c14319ea to your computer and use it in GitHub Desktop.
#creates A LOT of tokens
#!/bin/bash
for i in `seq 1 100000`;
do
stanza="[http://test$i]"
printf '\n\n%s\n' $stanza >> inputs.conf
printf 'disabled = 0\n' >> inputs.conf
guid=`uuidgen`
printf 'token = %s' $guid >> inputs.conf
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment