On the command line navigate to the directory where your file exists. Sorry but this magic assumes a unix like operating system.
The magic -
type wc -l
divide this result by the duration of your test in seconds
Potential magic using Windows OS (Untested by me, but found via a Google search)
dir /b c:\temp | find /c /v "~~~"
I like this approach because it allows you to quickly evaluate changes in your results. As you are optimizing an application configuration for performance you can very quickly approximate the throughput as TPS.
Stay tuned for two future posts:
How to quickly move results to MySQL
How to use Rake tasks to manage your results
FYI - I stole this magic from the magician Scott Sims.
Happy Testing!