log-times-of-each-step/README.md

7 lines
373 B
Markdown
Raw Normal View History

2023-12-12 22:36:03 +02:00
# log-times-of-each-step
This is a blank script for if you want to log the times of each step of your Bash script.
Basically, it uses traps to write out runtime in seconds, the last command executed, and if applicable, the exit code. This all gets written to a file called time.log
It is useful if you want to gauge the time each command in your script takes to run.