Query: getgrgid
OS: redhat
Section: 3
Links: redhat man pages all man pages
Forums: unix linux community forum categories
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
GETGRNAM(3) Linux Programmer's Manual GETGRNAM(3)NAMEgetgrnam, getgrgid - get group file entrySYNOPSIS#include <grp.h> #include <sys/types.h> struct group *getgrnam(const char *name); struct group *getgrgid(gid_t gid);DESCRIPTIONThe getgrnam() function returns a pointer to a structure containing the group information from /etc/group for the entry that matches the group name name. The getgrgid() function returns a pointer to a structure containing the group information from /etc/group for the entry that matches the group gid gid. The group structure is defined in <grp.h> as follows: struct group { char *gr_name; /* group name */ char *gr_passwd; /* group password */ gid_t gr_gid; /* group id */ char **gr_mem; /* group members */ };RETURN VALUEThe getgrnam() and getgrgid() functions return the group information structure, or NULL if the matching entry is not found or an error occurs.ERRORSENOMEM Insufficient memory to allocate group information structure.FILES/etc/group Group database fileCONFORMING TOSVID 3, POSIX, BSD 4.3SEE ALSOfgetgrent(3), getgrent(3), setgrent(3), endgrent(3)GNU1993-04-04 GETGRNAM(3)
Related Man Pages |
---|
getgrent(3) - redhat |
fgetgrent(3) - debian |
endgrent(3) - ultrix |
getgrgid(3) - ultrix |
fgetgrent(3) - suse |
Similar Topics in the Unix Linux Community |
---|
group limit |
Getting information from /etc/group |
Financial group trusts Linux platform to protect customers' assets |
Facebook Group for Complex Event Processing |
RHEL 5.11 - gid issue |