I have a bash script on AIX 7 that runs a database query and the output I get is a timestamp in the following format: 201607130319
.
Now I would like to compare the timestamp with current time (date +%Y%m%d%H%M
- 201607201802
) and check the difference in minutes. I basically need to know if the difference is more than 10 minutes.
I know I can do this on Linux using date -d
but it is not available on AIX. I am not allowed to install anything on the server either so what are my options here?