1 /* date - print or set the system date and time
2 Copyright (C) 89, 90, 91, 92, 93, 94, 1995 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
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, 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\n", 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 when using an option to specify date(s), any\n\
239 non-option argument must be a format string beginning with `+'"));
244 datestr
= set_datestr
;
246 if (batch_file
!= NULL
)
248 status
= batch_convert (batch_file
,
249 (n_args
== 1 ? argv
[optind
] + 1 : NULL
));
255 if (!option_specified_date
&& !set_date
)
257 if (n_args
== 1 && argv
[optind
][0] != '+')
259 /* Prepare to set system clock to the specified date/time
260 given in the POSIX-format. */
262 datestr
= argv
[optind
];
263 when
= posixtime (datestr
);
268 /* Prepare to print the current date/time. */
269 datestr
= _("undefined");
271 format
= (n_args
== 1 ? argv
[optind
] + 1 : NULL
);
276 /* (option_specified_date || set_date) */
277 if (reference
!= NULL
)
279 if (stat (reference
, &refstats
))
280 error (1, errno
, "%s", reference
);
281 when
= refstats
.st_mtime
;
284 when
= get_date (datestr
, NULL
);
285 format
= (n_args
== 1 ? argv
[optind
] + 1 : NULL
);
289 error (1, 0, _("invalid date `%s'"), datestr
);
293 /* Set the system clock to the specified date, then regardless of
294 the success of that operation, format and print that date. */
295 if (stime (&when
) == -1)
296 error (0, errno
, _("cannot set date"));
299 show_date (format
, when
);
302 if (fclose (stdout
) == EOF
)
303 error (2, errno
, _("write error"));
308 /* Display the date and/or time in WHEN according to the format specified
309 in FORMAT, followed by a newline. If FORMAT is NULL, use the
310 standard output format (ctime style but with a timezone inserted). */
313 show_date (const char *format
, time_t when
)
317 size_t out_length
= 0;
319 tm
= localtime (&when
);
323 /* Print the date in the default format. Vanilla ANSI C strftime
324 doesn't support %e, but POSIX requires it. If you don't use
325 a GNU strftime, make sure yours supports %e.
326 If you are not using GNU strftime, you want to change %z
327 in the RFC format to %Z; this gives, however, an invalid
328 RFC time format outside the continental United States and GMT. */
332 ? "%a, %_d %b %Y %H:%M:%S GMT"
333 : "%a, %_d %b %Y %H:%M:%S %z")
334 : "%a %b %e %H:%M:%S %Z %Y");
336 else if (*format
== '\0')
345 out
= (char *) xrealloc (out
, out_length
);
347 while (strftime (out
, out_length
, format
, tm
) == 0);
349 printf ("%s\n", out
);
357 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
362 Usage: %s [OPTION]... [+FORMAT]\n\
363 or: %s [OPTION] [MMDDhhmm[[CC]YY][.ss]]\n\
365 program_name
, program_name
);
367 Display the current time in the given FORMAT, or set the system date.\n\
369 -d, --date=STRING display time described by STRING, not `now'\n\
370 -f, --file=DATEFILE like --date once for each line of DATEFILE\n\
371 -r, --reference=FILE display the last modification time of FILE\n\
372 -R, --rfc-822 output RFC-822 compliant date string\n\
373 -s, --set=STRING set time described by STRING\n\
374 -u, --utc, --universal print or set Coordinated Universal Time\n\
375 --help display this help and exit\n\
376 --version output version information and exit\n\
380 FORMAT controls the output. The only valid option for the second form\n\
381 specifies Coordinated Universal Time. Interpreted sequences are:\n\
384 %%a locale's abbreviated weekday name (Sun..Sat)\n\
385 %%A locale's full weekday name, variable length (Sunday..Saturday)\n\
386 %%b locale's abbreviated month name (Jan..Dec)\n\
387 %%B locale's full month name, variable length (January..December)\n\
388 %%c locale's date and time (Sat Nov 04 12:02:33 EST 1989)\n\
389 %%d day of month (01..31)\n\
390 %%D date (mm/dd/yy)\n\
394 %%j day of year (001..366)\n\
397 %%m month (01..12)\n\
398 %%M minute (00..59)\n\
400 %%p locale's AM or PM\n\
401 %%r time, 12-hour (hh:mm:ss [AP]M)\n\
402 %%s seconds since 00:00:00, Jan 1, 1970 (a GNU extension)\n\
403 %%S second (00..61)\n\
404 %%t a horizontal tab\n\
405 %%T time, 24-hour (hh:mm:ss)\n\
406 %%U week number of year with Sunday as first day of week (00..53)\n\
407 %%w day of week (0..6); 0 represents Sunday\n\
408 %%W week number of year with Monday as first day of week (00..53)\n\
409 %%x locale's date representation (mm/dd/yy)\n\
410 %%X locale's time representation (%%H:%%M:%%S)\n\
411 %%y last two digits of year (00..99)\n\
412 %%Y year (1970...)\n\
413 %%Z time zone (e.g., EDT), or nothing if no time zone is determinable\n\
415 By default, date pads numeric fields with zeroes. GNU date recognizes\n\
416 the following modifiers between `%%' and a numeric directive.\n\
418 `-' (hyphen) do not pad the field\n\
419 `_' (underscore) pad the field with spaces\n\