Skip to content

Instantly share code, notes, and snippets.

@7sharp9
Created January 14, 2014 16:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 7sharp9/8421623 to your computer and use it in GitHub Desktop.
Save 7sharp9/8421623 to your computer and use it in GitHub Desktop.
average of 10 runs of an fsharp script
for i in {1..10}; do time fsharp hello world.fsx; done 2>&1 | grep ^real | sed -e s/.*m// | awk '{sum += $1} END {print sum / NR}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment