Tagged Questions
The etcpasswd tag has no wiki summary.
3
votes
2answers
1k views
How do I get user and group information in Perl on Windows?
Perl has several built-in functions for accessing /etc/passwd on Unix systems (and elsewhere when supported) for user and group information. For instance,
my $name = getpwuid($uid);
will return the ...
1
vote
4answers
783 views
Unix [Homework]: Get a list of /home/user/ directories in /etc/passwd
I'm very new to Unix, and currently taking a class learning the basics of the system and its commands.
I'm looking for a single command line to list off all of the user home directories in ...
1
vote
1answer
58 views
should I be calling lckpwdf() prior to getspent()?
Is lckpwdf() and ulckpwdf() intended to be used only for apps directly accessing the shadow password file?
More precisely, my question is: If I call the usual API such as getspnam() or getspent(), ...