Created
August 2, 2012 19:31
-
-
Save themartorana/3239948 to your computer and use it in GitHub Desktop.
Time your shell scripts
This file contains 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
#!/bin/sh | |
START=`date +%s%N` | |
# Do stuff here | |
END=`date +%s%N` | |
ELAPSED=`echo "scale=8; ($END - $START) / 1000000000" | bc` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment