Skip to content

Instantly share code, notes, and snippets.

@themartorana
Created August 2, 2012 19:31
Show Gist options
  • Save themartorana/3239948 to your computer and use it in GitHub Desktop.
Save themartorana/3239948 to your computer and use it in GitHub Desktop.
Time your shell scripts
#!/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