How to see the current date and time on the Linux terminal?
Published August 4, 2021
To see the current date and time, you can use the date
command on the Linux terminal.
# See the current date and time
date
# OUTPUT
Sat Aug 04 21:23:25 UTC 2021
See the execution of the above command live in repl.it
That's all 😃!