DATE(1) General Commands Manual DATE(1)NAME
date - print the date
SYNOPSIS
date [ option ] [ seconds ]
DESCRIPTION
Print the date, in the format
Tue Aug 16 17:03:52 CDT 1977
The options are
-u Report Greenwich Mean Time (GMT) rather than local time.
-n Report the date as the number of seconds since the epoch, 00:00:00 GMT, January 1, 1970.
The conversion from Greenwich Mean Time to local time depends on the $timezone environment variable; see ctime(2).
If the optional argument seconds is present, it is used as the time to convert rather than the real time.
FILES
/env/timezone
Current timezone name and adjustments.
/adm/timezone
A directory containing timezone tables.
/adm/timezone/local
Default timezone file, copied by init(8) into /env/timezone.
SOURCE
/sys/src/cmd/date.c
DATE(1)
Check Out this Related Man Page
DATE_DEFAULT_TIMEZONE_SET(3) 1 DATE_DEFAULT_TIMEZONE_SET(3)date_default_timezone_set - Sets the default timezone used by all date/time functions in a script
SYNOPSIS
bool date_default_timezone_set (string $timezone_identifier)
DESCRIPTION date_default_timezone_set(3) sets the default timezone used by all date/time functions.
Note
Since PHP 5.1.0 (when the date/time functions were rewritten), every call to a date/time function will generate a E_NOTICE if the
timezone isn't valid, and/or a E_WARNING message if using the system settings or the $TZ environment variable.
Instead of using this function to set the default timezone in your script, you can also use the INI setting date.timezone to set the
default timezone.
PARAMETERS
o $timezone_identifier
- The timezone identifier, like UTC or Europe/Lisbon. The list of valid identifiers is available in the "List of Supported Time-
zones".
RETURN VALUES
This function returns FALSE if the $timezone_identifier isn't valid, or TRUE otherwise.
EXAMPLES
Example #1
Getting the default timezone
<?php
date_default_timezone_set('America/Los_Angeles');
$script_tz = date_default_timezone_get();
if (strcmp($script_tz, ini_get('date.timezone'))){
echo 'Script timezone differs from ini-set timezone.';
} else {
echo 'Script timezone and ini-set timezone match.';
}
?>
CHANGELOG
+--------+---------------------------------------------------+
|Version | |
| | |
| | Description |
| | |
+--------+---------------------------------------------------+
| 5.3.0 | |
| | |
| | Now throws E_WARNING rather than E_STRICT. |
| | |
| 5.1.2 | |
| | |
| | The function started to validate the $time- |
| | zone_identifier parameter. |
| | |
+--------+---------------------------------------------------+
SEE ALSO date_default_timezone_get(3), "List of Supported Timezones".
PHP Documentation Group DATE_DEFAULT_TIMEZONE_SET(3)
Hi All,
I have a situation where I need to copy the files having the latest date.
For example I have a file by name bas100e1_jun05. I need to copy it to bas100e1. But when a file by name bas100e1_jul05 is put in the same directory the script should copy the file having the latest month which... (34 Replies)
I have a tab delimited HUGE file (13 million records) with Detail, Metadata and Summary records.
Sample File looks like this
M BESTWESTERN 4 ACTIVITY_CNT_L12 A 3
M AIRTRAN 4 ACTIVITY_CNT_L12 A 3
D BESTWESTERN FIRSTNAME LASTNAME 209 N SANBORN AVE
D BESTWESTERN FIRSTNAME LASTNAME 6997... (25 Replies)
Hi
Currently I can grep a log file with the following command:
$results = `grep -A 2 '^$date.$time.*' $log`;
and the following arguments:
$date = 2007/04/25
$time = 16:07
Log example:
2007/04/25 16:07:12.145701
2007/05/25 14:07:12.145701
2007/05/25 17:07:12.145701
2007/06/25... (37 Replies)
Hi,
I need to conver the date format to binary and then subract it by one which will result me an output with yesterdays date and use it..
So that i will use the out and delete all the folders which are of minus one days.i.e if today is 2010-03-18 (this is a folder format at some xyz location).... (59 Replies)
Hi guys, i am new to perl. I started reading the perl documents and try to come up with some logic.
I am trying to create a script that would go into a location, search for todays files, then searches for all .txt files from today.
If todays not found, its an error
If file size is less... (26 Replies)
I am writing a software product and hope that it will work on a variety of Linux distributions. At the moment, I am trying to create some kind of Linux version of patches/upgrades of installed software. Gathering information on available updates isn't hard, nor is installation of updates, but I... (27 Replies)
Just writing a script as part of a backup procedure to use a data file 7 days previous if there has not been one sent over.
Got stuck on trying to get the date command to insert the date from 7 days ago i.e. todays date is 12/09/10 7 days ago would be 12/09/03
I would want the date command... (30 Replies)
Hi,
Below is what i am seeing in /var/log/messages on ubuntu machine.
2013-01-14T18:29:39.319736+00:00 test01 ldap-mail: test1
Jan 14 18:29:39 test01 ldap-mail: test2
2013-01-14T18:29:39.320792+00:00 test01 ldap-mail: test3
Jan 14 18:29:39 test01 ldap-mail: test4But on other ubuntu... (29 Replies)
Hello,
I have a sun v880 that i got from ebay for cheap as a way to to learn Solaris and sun hardware in general.
The machine currently has OBP 4.7.0 2002/10/25 and i was wondering if there was a way to update the prom with out and active solaris install, as currently when i proceed with the... (29 Replies)
Hey,
I moved the user information in the top right on the navbar to side panel and replace it with a clickable avatar image. If you have an avatar, you will see your avatar and if you don't you will see some default one (will change it to something better later).
If you have any notification... (53 Replies)