1 /* date - print or set the system date and time
2 Copyright (C) 89, 90, 91, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 David MacKenzie <djm@gnu.ai.mit.edu> */
23 #include <sys/types.h>
47 static void show_date
__P ((const char *format
, time_t when
));
48 static void usage
__P ((int status
));
50 /* The name this program was run with, for error messages. */
53 /* If nonzero, display usage information and exit. */
56 /* If nonzero, print the version on standard output and exit. */
57 static int show_version
;
59 /* If non-zero, display time in RFC-822 format for mail or news. */
60 static int rfc_format
= 0;
62 /* If nonzero, print or set Coordinated Universal Time. */
63 static int universal_time
= 0;
65 static struct option
const long_options
[] =
67 {"date", required_argument
, NULL
, 'd'},
68 {"file", required_argument
, NULL
, 'f'},
69 {"help", no_argument
, &show_help
, 1},
70 {"reference", required_argument
, NULL
, 'r'},
71 {"rfc-822", no_argument
, NULL
, 'R'},
72 {"set", required_argument
, NULL
, 's'},
73 {"uct", no_argument
, NULL
, 'u'},
74 {"utc", no_argument
, NULL
, 'u'},
75 {"universal", no_argument
, NULL
, 'u'},
76 {"version", no_argument
, &show_version
, 1},
80 /* Parse each line in INPUT_FILENAME as with --date and display the
81 each resulting time and date. If the file cannot be opened, tell why
82 then exit. Issue a diagnostic for any lines that cannot be parsed.
83 If any line cannot be parsed, return nonzero; otherwise return zero. */
86 batch_convert (const char *input_filename
, const char *format
)
95 if (strcmp (input_filename
, "-") == 0)
97 input_filename
= _("standard input");
102 in_stream
= fopen (input_filename
, "r");
103 if (in_stream
== NULL
)
105 error (1, errno
, "`%s'", input_filename
);
115 line_length
= getline (&line
, &buflen
, in_stream
);
118 /* FIXME: detect/handle error here. */
121 when
= get_date (line
, NULL
);
124 if (line
[line_length
- 1] == '\n')
125 line
[line_length
- 1] = '\0';
126 error (0, 0, _("invalid date ` %s'"), line
);
131 show_date (format
, when
);
135 if (fclose (in_stream
) == EOF
)
136 error (2, errno
, input_filename
);
145 main (int argc
, char **argv
)
148 const char *datestr
= NULL
;
149 const char *set_datestr
= NULL
;
153 char *batch_file
= NULL
;
154 char *reference
= NULL
;
155 struct stat refstats
;
158 int option_specified_date
;
160 program_name
= argv
[0];
161 setlocale (LC_ALL
, "");
162 bindtextdomain (PACKAGE
, LOCALEDIR
);
163 textdomain (PACKAGE
);
165 while ((optc
= getopt_long (argc
, argv
, "d:f:r:Rs:u", long_options
, NULL
))
184 set_datestr
= optarg
;
189 if (putenv ("TZ=UTC0") != 0)
190 error (1, 0, "memory exhausted");
201 printf ("date (%s) %s\n", GNU_PACKAGE
, VERSION
);
208 n_args
= argc
- optind
;
210 option_specified_date
= ((datestr
? 1 : 0)
211 + (batch_file
? 1 : 0)
212 + (reference
? 1 : 0));
214 if (option_specified_date
> 1)
217 _("the options to specify dates for printing are mutually exclusive"));
221 if (set_date
&& option_specified_date
)
224 _("the options to print and set the time may not be used together"));
230 error (0, 0, _("too many non-option arguments"));
234 if ((set_date
|| option_specified_date
)
235 && n_args
== 1 && argv
[optind
][0] != '+')
238 the argument `%s' lacks a leading `+';\n\
239 when using an option to specify date(s), any\n\
240 non-option argument must be a format string beginning with `+'"),
246 datestr
= set_datestr
;
248 if (batch_file
!= NULL
)
250 status
= batch_convert (batch_file
,
251 (n_args
== 1 ? argv
[optind
] + 1 : NULL
));
257 if (!option_specified_date
&& !set_date
)
259 if (n_args
== 1 && argv
[optind
][0] != '+')
261 /* Prepare to set system clock to the specified date/time
262 given in the POSIX-format. */
264 datestr
= argv
[optind
];
265 when
= posixtime (datestr
);
270 /* Prepare to print the current date/time. */
271 datestr
= _("undefined");
273 format
= (n_args
== 1 ? argv
[optind
] + 1 : NULL
);
278 /* (option_specified_date || set_date) */
279 if (reference
!= NULL
)
281 if (stat (reference
, &refstats
))
282 error (1, errno
, "%s", reference
);
283 when
= refstats
.st_mtime
;
286 when
= get_date (datestr
, NULL
);
287 format
= (n_args
== 1 ? argv
[optind
] + 1 : NULL
);
291 error (1, 0, _("invalid date `%s'"), datestr
);
295 /* Set the system clock to the specified date, then regardless of
296 the success of that operation, format and print that date. */
297 if (stime (&when
) == -1)
298 error (0, errno
, _("cannot set date"));
301 show_date (format
, when
);
304 if (fclose (stdout
) == EOF
)
305 error (2, errno
, _("write error"));
310 /* Display the date and/or time in WHEN according to the format specified
311 in FORMAT, followed by a newline. If FORMAT is NULL, use the
312 standard output format (ctime style but with a timezone inserted). */
315 show_date (const char *format
, time_t when
)
319 size_t out_length
= 0;
321 tm
= localtime (&when
);
325 /* Print the date in the default format. Vanilla ANSI C strftime
326 doesn't support %e, but POSIX requires it. If you don't use
327 a GNU strftime, make sure yours supports %e.
328 If you are not using GNU strftime, you want to change %z
329 in the RFC format to %Z; this gives, however, an invalid
330 RFC time format outside the continental United States and GMT. */
334 ? "%a, %_d %b %Y %H:%M:%S GMT"
335 : "%a, %_d %b %Y %H:%M:%S %z")
336 : "%a %b %e %H:%M:%S %Z %Y");
338 else if (*format
== '\0')
347 out
= (char *) xrealloc (out
, out_length
);
349 while (strftime (out
, out_length
, format
, tm
) == 0);
351 printf ("%s\n", out
);
359 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
364 Usage: %s [OPTION]... [+FORMAT]\n\
365 or: %s [OPTION] [MMDDhhmm[[CC]YY][.ss]]\n\
367 program_name
, program_name
);
369 Display the current time in the given FORMAT, or set the system date.\n\
371 -d, --date=STRING display time described by STRING, not `now'\n\
372 -f, --file=DATEFILE like --date once for each line of DATEFILE\n\
373 -r, --reference=FILE display the last modification time of FILE\n\
374 -R, --rfc-822 output RFC-822 compliant date string\n\
375 -s, --set=STRING set time described by STRING\n\
376 -u, --utc, --universal print or set Coordinated Universal Time\n\
377 --help display this help and exit\n\
378 --version output version information and exit\n\
382 FORMAT controls the output. The only valid option for the second form\n\
383 specifies Coordinated Universal Time. Interpreted sequences are:\n\
386 %%a locale's abbreviated weekday name (Sun..Sat)\n\
387 %%A locale's full weekday name, variable length (Sunday..Saturday)\n\
388 %%b locale's abbreviated month name (Jan..Dec)\n\
389 %%B locale's full month name, variable length (January..December)\n\
390 %%c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n\
391 %%d day of month (01..31)\n\
392 %%D date (mm/dd/yy)\n\
393 %%e day of month, blank padded ( 1..31)\n\
397 %%j day of year (001..366)\n\
400 %%m month (01..12)\n\
401 %%M minute (00..59)\n\
403 %%p locale's AM or PM\n\
404 %%r time, 12-hour (hh:mm:ss [AP]M)\n\
405 %%s seconds since 00:00:00, Jan 1, 1970 (a GNU extension)\n\
406 %%S second (00..61)\n\
407 %%t a horizontal tab\n\
408 %%T time, 24-hour (hh:mm:ss)\n\
409 %%U week number of year with Sunday as first day of week (00..53)\n\
410 %%V week number of year with Monday as first day of week (01..52)\n\
411 %%w day of week (0..6); 0 represents Sunday\n\
412 %%W week number of year with Monday as first day of week (00..53)\n\
413 %%x locale's date representation (mm/dd/yy)\n\
414 %%X locale's time representation (%%H:%%M:%%S)\n\
415 %%y last two digits of year (00..99)\n\
416 %%Y year (1970...)\n\
417 %%z RFC-822 style numeric timezone (-0500) (a nonstandard extension)\n\
418 %%Z time zone (e.g., EDT), or nothing if no time zone is determinable\n\
420 By default, date pads numeric fields with zeroes. GNU date recognizes\n\
421 the following modifiers between `%%' and a numeric directive.\n\
423 `-' (hyphen) do not pad the field\n\
424 `_' (underscore) pad the field with spaces\n\
426 puts (_("\nReport bugs to sh-utils-bugs@gnu.ai.mit.edu"));