Bash-Linux.com : Le SHELL pour les nuls

  Actuellement 50 lignes de commande et 1472 man disponibles
login as: root
root@213.186.33.18's password:
Last login: Mon Feb 13 0:29:38 2012 from 38.107.179.227
[root@bash-linux ~] # echo "Bienvenue sur Bash-Linux.com"_
 Manuel des commandes UNIX (man) Version anglaise

Indiquez la fonction :

Man Fgetgrent_r en anglais

GETGRENT_R(3) Linux Programmer's Manual GETGRENT_R(3)
 
NAME


getgrent_r, fgetgrent_r - get group file entry reentrantly
 
SYNOPSIS


#include int getgrent_r(struct group *gbuf, char *buf, size_t buflen, struct group **gbufp); int fgetgrent_r(FILE *fp, struct group *gbuf, char *buf, size_t buflen, struct group **gbufp); Feature Test Macro Requirements for glibc (see feature_test_macros(7)): getgrent_r(): _GNU_SOURCE fgetgrent_r(): _SVID_SOURCE
 
DESCRIPTION


The functions getgrent_r() and fgetgrent_r() are the reentrant versions of getgrent(3) and fgetgrent(3). The former reads the next group entry from the stream initialized by setgrent(3). The latter reads the next group entry from the stream fp. The group structure is defined in 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 */ }; The non-reentrant functions return a pointer to static storage, where this static storage contains further pointers to group name, password and members. The reentrant functions described here return all of that in caller-provided buffers. First of all there is the buffer gbuf that can hold a struct group. And next the buffer buf of size buflen that can hold additional strings. The result of these functions, the struct group read from the stream, is stored in the provided buffer *gbuf, and a pointer to this struct group is returned in *gbufp.
 
RETURN VALUE


On success, these functions return 0 and *gbufp is a pointer to the struct group. On error, these functions return an error value and *gbufp is NULL.
 
ERRORS


ENOENT No more entries. ERANGE Insufficient buffer space supplied. Try again with larger buffer.
 
CONFORMING TO


These functions are GNU extensions, done in a style resembling the POSIX version of functions like getpwnam_r(3). Other systems use pro- totype struct group *getgrent_r(struct group *grp, char *buf, int buflen); or, better, int getgrent_r(struct group *grp, char *buf, int buflen, FILE **gr_fp);
 
NOTES


The function getgrent_r() is not really reentrant since it shares the reading position in the stream with all other threads.
 
EXAMPLE


#define _GNU_SOURCE #include #include #include #define BUFLEN 4096 int main(void) { struct group grp, *grpp; char buf[BUFLEN]; int i; setgrent(); while (1) { i = getgrent_r(&grp, buf, BUFLEN, &grpp); if (i) break; printf("%s (%d):", grpp->gr_name, grpp->gr_gid); for (i = 0; ; i++) { if (grpp->gr_mem[i] == NULL) break; printf(" %s", grpp->gr_mem[i]); } printf("\n"); } endgrent(); exit(EXIT_SUCCESS); }
 
SEE ALSO


fgetgrent(3), getgrent(3), getgrgid(3), getgrnam(3), putgrent(3), group(5)
 
COLOPHON


This page is part of release 3.05 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. GNU 2007-07-26 GETGRENT_R(3)


 Dernières recherches
Man  en anglais Man fgetgrent_r en anglaisMan  en français Man fgetgrent_r en français
Man  en anglais Man sethostname en anglaisMan  en français Man sethostname en français
Man  en anglais Man getaddrinfo en anglaisMan  en français Man getaddrinfo en français
Man  en anglais Man wc en anglaisMan  en français Man wc en français
Man  en anglais Man setpriority en anglaisMan  en français Man setpriority en français
Man  en anglais Man mysql_table en anglaisMan  en français Man mysql_table en français
Man  en anglais Man sigaltstack en anglaisMan  en français Man sigaltstack en français
Man  en anglais Man versionsort en anglaisMan  en français Man versionsort en français
Man  en anglais Man getprotoent en anglaisMan  en français Man getprotoent en français
Man  en anglais Man getsockname en anglaisMan  en français Man getsockname en français
Man  en anglais Man getopt_long en anglaisMan  en français Man getopt_long en français
Man  en anglais Man od en anglaisMan  en français Man od en français
Man  en anglais Man pr en anglaisMan  en français Man pr en français
Man  en anglais Man mq_receive en anglaisMan  en français Man mq_receive en français
Man  en anglais Man select_tut en anglaisMan  en français Man select_tut en français

 Recherche

Dans ce moteur de recherche, vous pouvez taper directement votre besoin, en une phrase normale, humaine.
Exemple : vous cherchez comment remplacer un mot par un autre dans tous les fichiers d'un certain dossier. Vous pouvez écrire "Comment remplacer un mot par un autre dans tous les fichiers d'un dossier". Le moteur vous ramenera les résultats en fonction de leur pertinence.
Vous pouvez bien sûr ne chercher qu'un seul mot-clé, par exemple "find".
 Toutes les lignes de code
Par popularité
Par fonction
Recherche avancée
 Les logiciels SHELL/SSH
Putty
Astuces Bash
Faire du SHELL avec PHP!
 La doc officielle
Les man Linux en français
Les man Linux en anglais
 Proposer vos bash
Partagez vos lignes!
 Les requêtes
Déposer une requête
Voir/répondre à une requête
 Quelques sites interessants
Bons sites pour apprendre
 Rechercher