Linux – Get current time in seconds since the Epoch on Linux, Bash

bashdatetimelinux

I need something simple like date, but in seconds since 1970 instead of the current date, hours, minutes, and seconds.

date doesn't seem to offer that option. Is there an easy way?

Best Answer

This should work:

date +%s