How to display Unix time in the timestamp format?
You can do this with
date +%s
For more possibilities, see
man date
My favorite way:
perl -e 'print time'
You can do this with
date +%s
For more possibilities, see
man date
My favorite way:
perl -e 'print time'