ait/poc/misc/benchmark.bash
author mb
Sat, 04 May 2013 12:03:46 -0400
changeset 0 70c307de9b84
permissions -rwxr-xr-x
initial commit. basic scripts
     1 #!/bin/bash
     2 START=$(date +%s)
     3 $1
     4 END=$(date +%s)
     5 DIFF=$(( $END - $START))
     6 echo  "it took $DIFF seconds"
     7