Archive for the ‘G’ Category

grep, egrep, fgrep – print lines matching a pattern
USAGE
grep [options] PATTERN [FILE...]
grep [options] [-e PATTERN | -f FILE] [FILE...]

DESCRIPTION
Grep searches the named input FILEs (or standard input if no files are
[...]

Friday, August 28th, 2009 at 00:48 | Comments Off
Categories: E, F, G
Tags: , ,

gettext, dgettext, dcgettext – translate message
USAGE
#include <libintl.h>

char * gettext (const char * msgid);
char * dgettext (const char * domainname, const char * msgid);
char * dcgettext (const char [...]

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

getlogin, getlogin_r, cuserid – get user name
USAGE
#include <unistd.h>

char *getlogin(void);
int getlogin_r(char *buf, size_t bufsize);

#include <stdio.h>

char *cuserid(char *string);

DESCRIPTION
[...]

Thursday, August 27th, 2009 at 02:31 | Comments Off
Categories: G

setmtent, mtent, endmntent, addmtent get file system descriptor file entry
USAGE
#include <stdio.h>
#include <mntent.h>

FILE *setmntent(const char *filename, const char *type);

struct mntent *getmntent(FILE *fp);

[...]

Wednesday, August 26th, 2009 at 01:39 | Comments Off
Categories: G
Tuesday, August 25th, 2009 at 23:08 | Comments Off
Categories: G
TOP