28 lines
450 B
C
28 lines
450 B
C
#include<stdio.h>
|
|
#include<stdlib.h>
|
|
#include <sys/types.h>
|
|
#include <grp.h>
|
|
|
|
int main(int argc, char const *argv[])
|
|
{
|
|
|
|
if (argc!=2){
|
|
puts("ERROR_usage: <commande> [group-name]");
|
|
return EXIT_FAILURE;
|
|
}
|
|
int compteur=0;
|
|
struct group *recupInfoGroupe;
|
|
|
|
|
|
recupInfoGroupe=getgrnam(argv[1]);
|
|
|
|
for(compteur=0;recupInfoGroupe->gr_mem[compteur]!=NULL;compteur++){
|
|
|
|
printf("%s\n", recupInfoGroupe->gr_mem[compteur]);
|
|
}
|
|
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
} |