Posts Tagged ‘date’

difftime – calculate time difference
USAGE
#include <time.h>

double difftime(time_t time1, time_t time0);

DESCRIPTION
The difftime() function returns the number of seconds elapsed between
time time1 and time time0, represented as [...]

Thursday, August 27th, 2009 at 20:51 | Comments Off
Categories: D

date – print or set the system date and time
USAGE
date [OPTION]… [+FORMAT]
date [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]

DESCRIPTION
Display the current time in the given FORMAT, or set the system date.

-d, –date=STRING
[...]

Thursday, August 27th, 2009 at 02:42 | Comments Off
Categories: D
Tags:

co – check out RCS revisions
USAGE
co [options] file …

DESCRIPTION
co retrieves a revision from each RCS file and stores it into the cor-
responding working file.

Pathnames matching an [...]

Wednesday, August 26th, 2009 at 23:45 | Comments Off
Categories: c

ASCII
USAGE
#include <time.h>

char *asctime(const struct tm *tm);
char *asctime_r(const struct tm *tm, char *buf);

char *ctime(const time_t *timep);
char *ctime_r(const time_t *timep, char *buf);

[...]

Wednesday, August 26th, 2009 at 02:02 | Comments Off
Categories: A
TOP