← index
cplusplus11.Examples/UNIX/user/users.cpp
Source: cplusplus11.Examples/UNIX/user/users.cpp
#include<iostream>
#include<pwd.h>
#include<grp.h>

int main() {
    
    
    passwd *pwd;
    
    while((pwd = getpwent()) != NULL) {
        std::cout << "user: " << pwd->pw_name << " id: " << pwd->pw_uid <<  " shell: " << pwd->pw_shell << "\n";
        
    }
    
    endpwent();
    
    return 0;
}