Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

how to check date is older than x days in shell script

datetime='2016-08-31T15:38:18Z'
timeago='90 days ago'

dtSec=$(date --date "$datetime" +'%s')
taSec=$(date --date "$timeago" +'%s')

echo "INFO: dtSec=$dtSec, taSec=$taSec" >&2

[ $dtSec -lt $taSec ] && echo too old
Source by unix.stackexchange.com #
 
PREVIOUS NEXT
Tagged: #check #date #older #days #shell #script
ADD COMMENT
Topic
Name
4+4 =