.B \%\-\-localtime
option.
.sp
+The time shown is in same format as that of
+.BR \%date (1)
+by default, and additionally, the number of microseconds is shown.
+.sp
Showing the Hardware Clock time is the default when no function is specified.
.sp
The
option. For example:
.RS
.IP "" 4
-.B "hwclock\ \-\-set\ \-\-date='2011-08-14\ 16:45:05'
+.B "hwclock\ \-\-set\ \-\-date='2011-08-14\ 16:45:05'"
.PP
The argument must be in local time, even if you keep your Hardware Clock in
UTC. See the
lt = localtime(&hwctime.tv_sec);
strftime(ctime_now, sizeof(ctime_now), format, lt);
- printf(_("%s .%06d seconds\n"), ctime_now, (int)hwctime.tv_usec);
+ printf(_("%s and %06d microseconds\n"), ctime_now, (int)hwctime.tv_usec);
}
}