Shell script date calculations


#!/bin/sh
before="$(date +%s)"
echo $before
sleep 5
Ymd="$(date '+%Y%m%d')"
echo $Ymd
after="$(date +%s)"
echo $after
elapsed_seconds="$(expr $after - $before)"
echo Elapsed time for code block: $elapsed_seconds

1 Comment

Submit a Comment

Your email address will not be published. Required fields are marked *