So I have the following bash script:
#!/bin/bash start_timer=$(date +%s) echo $start_timer for ((i=1;i<=100;i++)); do echo $i done end_timer=$(date