We can make use of the date command to get the current date and time.
Example:
$ date
Mon Aug 14 07:00:03 GMT 2023
If you just want to display the current time then you can add the date formatting string as follows.
$ date +'%H:%M:%S'
07:21:22

If you want to know the time of a specific location, then you can make use of the timezone string.
List for Timezones Time using Bash Date Command:
Timezone | Bash Command to Get Current Time |
---|---|
UTC (Coordinated Universal Time) | date -u |
New York (Eastern Time Zone) | TZ="America/New_York" date |
Los Angeles (Pacific Time Zone) | TZ="America/Los_Angeles" date |
Chicago (Central Time Zone) | TZ="America/Chicago" date |
Denver (Mountain Time Zone) | TZ="America/Denver" date |
Phoenix (Mountain Standard Time) | TZ="America/Phoenix" date |
Anchorage (Alaska Time Zone) | TZ="America/Anchorage" date |
Honolulu (Hawaii-Aleutian Time) | TZ="Pacific/Honolulu" date |
London (Greenwich Mean Time) | TZ="Europe/London" date |
Paris (Central European Time) | TZ="Europe/Paris" date |
Berlin (Central European Time) | TZ="Europe/Berlin" date |
Rome (Central European Time) | TZ="Europe/Rome" date |
Athens (Eastern European Time) | TZ="Europe/Athens" date |
Moscow (Moscow Standard Time) | TZ="Europe/Moscow" date |
Tokyo (Japan Standard Time) | TZ="Asia/Tokyo" date |
Sydney (Australian Eastern Time) | TZ="Australia/Sydney" date |
Mumbai (Indian Standard Time) | TZ="Asia/Kolkata" date |
Beijing (China Standard Time) | TZ="Asia/Shanghai" date |
Hong Kong (Hong Kong Time) | TZ="Asia/Hong_Kong" date |
Riyadh (Arabian Standard Time) | TZ="Asia/Riyadh" date |
Dubai (Gulf Standard Time) | TZ="Asia/Dubai" date |
Johannesburg (South Africa Time) | TZ="Africa/Johannesburg" date |
Sao Paulo (Brasília Time) | TZ="America/Sao_Paulo" date |
New Delhi (India Standard Time) | TZ="Asia/Kolkata" date |
Toronto (Eastern Time Zone) | TZ="America/Toronto" date |
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Bash,
- Bash Hello World! Script Tutorial
- How to run bash command in background
- How to create new user account in Windows bash
- How to Compare Strings in Bash
- Bash: Allow Command to Fail without exiting Script
- Fix bash: script.sh: Permission denied Error
- Bash getopts Command Example
- How to fix bash ping command not found error
- How to add NewLine Character in Bash Script String
- How to Echo Bash Command to a File
- Bash Command to Find String in a File
- How to open new Terminal using Bash Command
- Bash How to Save Output of a Command to a Variable
- Download a SSL Certificate from a URL in Terminal
- Bash Command to Check IP Address
- Know Bash shell version command
- Bash Command To Check If File Exists
- How to run a Command in Bash Script
- How to Compare two Files in Bash Shell
- How to check if a variable is set in Bash Script or Not
- Convert String from uppercase to lowercase in Bash
- How to see Created Accessed Modified and Changed dates of a file using bash terminal command
- Bash Command To Get Current Time
- Bash command to List Files
- Fix: bash: syntax error near unexpected token
More Posts:
- How to check your IP using bash for Windows? - Bash
- Fix - Microsoft Windows Error Code: 0xA00F4244 NoCamerasAreAttached - Microsoft
- Steps to Compare Two files in Sublime Text Side-by-Side - Sublime-Text
- How to make Android EditText not editable - Android
- Get HTML table td, tr or th inner content value with id or name attribute - Html
- How to detect Operating System using Java code - Java
- Mac Studio Display Buzzing sound from the Monitor - Mac-OS-X
- Bash Command to Exit Script in Terminal - Bash