Tout pour gérer les timestamp – All for timestamp
Afficher le timestamp courant / print current timestamp:
perl -e 'print time;'
date +%s
Le timespamp de la veille / Yesterday timestamp:
perl -e 'print time-1*86400;'
date -d '1 day ago' +%s # Work only with up-to-date date such as Linux