#02-Linux Tip of the Day 💡🐧
You can enable timestamps in your bash command history to see when you ran previous commands. This can be useful for tracing what you were working on and when.
To add timestamps to your history, just set the HISTTIMEFORMAT environment variable like so:
$ export HISTTIMEFORMAT="%F %T "Now when you view your history or grep through it, you'll see a timestam…


