Go to: Synopsis. Return value. Keywords. Flags. MEL examples.
date [-date] [-format string] [-shortDate] [-shortTime] [-time]
date is NOT undoable, NOT queryable, and NOT editable.
Returns information about current time and date. Use the predefined formats, or the -format flag to specify the output format.
time, date
date, format, shortDate, shortTime, time
Long name (short name) |
Argument types |
Properties |
-date(-d)
|
|
|
|
Returns the current date. Format is YYYY/MM/DD
|
|
-format(-f)
|
string
|
|
|
Specifies a string defining how the date and time should be represented. All
occurences of the keywords below will be replaced with the corresponding
values:
Keyword | Becomes |
YYYY | Current year, using 4 digits |
YY | Last two digits of the current year |
MM | Current month, with leading 0 if necessary |
DD | Current day, with leading 0 if necessary |
hh | Current hour, with leading 0 if necessary |
mm | Current minute, with leading 0 if necessary |
ss | Current second, with leading 0 if necessary |
|
|
-shortDate(-sd)
|
|
|
|
Returns the current date. Format is MM/DD
|
|
-shortTime(-st)
|
|
|
|
Returns the current time. Format is hh:mm
|
|
-time(-t)
|
|
|
|
Returns the current time. Format is hh:mm:ss
|
|
Flag can appear in Create mode of command
|
Flag can appear in Edit mode of command
|
Flag can appear in Query mode of command
|
Flag can be used more than once in a command.
|
// Get the current date and time
date;
// Result:2006/03/09 16:50:24//
// Get only the month and day
date -shortDate;
// Result:03/09//
// Get the date and time in a fancy format
date -format "Year is YY (or YYYY), month is MM, day is DD. And it is now hh:mm:ss";
// Result:year is 06 (or 2006), month is 03, day is 09. And it is now 16:53:20//