Created
February 8, 2018 13:10
-
-
Save alexmx/5eb5c103babcaded725b9463769a85d5 to your computer and use it in GitHub Desktop.
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/bash | |
START=$(date +%s) | |
# Command to benchmark | |
END=$(date +%s) | |
DIFF=$(echo "$END - $START" | bc) | |
echo "Time elapsed: $DIFF" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment