Created
January 14, 2014 16:55
-
-
Save 7sharp9/8421623 to your computer and use it in GitHub Desktop.
average of 10 runs of an fsharp script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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