Linux: Bash Get Time

by on October 27, 2010 · 1 comment· last updated at October 27, 2010

How do I get the system time in BASH? How can I get the Linux system using bash shell?

You can use the date command to display and/or set the Linux / UNIX system date and time. To display current time, enter (open the terminal or login over ssh session and type the command at bash prompt):
$ date
Sample outputs:

Wed Oct 27 16:50:41 IST 2010

You can only display time, enter:
$ date +"%T"
Sample outputs:

16:51:05

The following command use your local standards to display date and time:
$ date +"%c"
Sample outputs:

Wednesday 27 October 2010 04:52:06 PM IST


You should follow me on twitter here or grab rss feed to keep track of new changes.

Featured Articles:

{ 1 comment… read it below or add one }

1 vaLar October 27, 2010 at 5:28 pm

And to set the time trought BASH, use this:

date MMDDHHmmYYYY

where
MM = Month (2 digits)
DD = Day (2 digits)
HH= Hours (24 hours format)
mm= Minutes (2 digits)
YYYY= Year (4 digits)

Example:
date 102712232010
Set the time to Wed Oct 27 12:23:00 CDT 2010

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <kbd> <blockquote> <pre> <a href="" title="">

Tagged as: , , , , , , ,

Previous Faq:

Next Faq: