Last active
November 12, 2023 21:19
-
-
Save jrr/72a66fa55c58c3d2587a8ec844e6fd08 to your computer and use it in GitHub Desktop.
stopwatch.sh
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 | |
# | |
# Stopwatch | |
# | |
# Simple script to time how long things take. (useful for CI) | |
# | |
# Use it like this: | |
# > ./scripts/stopwatch.sh | |
# Started stopwatch.. | |
# > echo "timed commands go here" | |
# > ./scripts/stopwatch.sh "install packages" | |
# Stopwatch: Completed interval "install packages" in 0m28s. (running total 0m28s) | |
# > echo "do some stuff" | |
# > ./scripts/stopwatch.sh build | |
# Stopwatch: Completed interval "build" in 0m13s. (running total 0m41s) | |
# | |
file_start=.stopwatch-start | |
file_prev=.stopwatch-prev | |
current_time=$(date +%s) | |
format() { | |
((m = ${1} / 60)) | |
((s = ${1} % 60)) | |
printf "%0dm%02ds\n" "$m" "$s" | |
} | |
interval_name=$1 | |
if test -f "$file_prev" && test -f "$file_start"; then | |
read -r time_prev <$file_prev | |
read -r time_start <$file_start | |
if [[ "$time_start" == "" ]] || [[ "$time_prev" == "" ]]; then | |
echo "unable to read start/prev times ('$time_start'/'$time_prev')" | |
exit 1 | |
fi | |
duration_total=$((current_time - time_start)) | |
duration_lap=$((current_time - time_prev)) | |
echo "Stopwatch: Completed interval \"$interval_name\" in $(format $duration_lap). (running total $(format $duration_total))" | |
else | |
echo "Started stopwatch.." | |
echo "$current_time" >$file_start | |
fi | |
echo "$current_time" >$file_prev |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment