Skip to content

Instantly share code, notes, and snippets.

@netbe
Created August 2, 2012 08:45
Show Gist options
  • Save netbe/3235511 to your computer and use it in GitHub Desktop.
Save netbe/3235511 to your computer and use it in GitHub Desktop.
Load Testing
#!/bin/bash
for i in {1..100}
do
echo `curl -X 'OPTIONS' -H 'X-TriviaSports-Token: 62dcae5a5a6efc710391e537cd777fcd' https://triviasports-preproduction.chugulu.com/api/games/start > /dev/null`;
echo `curl -X 'GET' -H 'X-TriviaSports-Token: 62dcae5a5a6efc710391e537cd777fcd' https://triviasports-preproduction.chugulu.com/api/games/start > /dev/null`;
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment