You can display the current time zone in Linux using the date command with the %Z format specifier. Here’s how to do it:
date '+%Z'
This command will output the current time zone abbreviation (e.g., "UTC", "PST", "EST").
If you want to see the full date and time along with the time zone, you can use:
date '+%Y-%m-%d %H:%M:%S %Z'
This will display the current date, time, and time zone in a more comprehensive format.
