Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
598 views

should I free pointer returned by getpwuid() in Linux?

After I call getpwuid(uid), I have a reference to a pointer. Should I free that when I don't use it anymore? Reading the man pages, it says that it makes reference to some static area, that may be ...
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 ...
0
votes
1answer
154 views

list of uids / names of System Preferences > Accounts

How can I obtain an array with uid and names? I could iterate from 0 to 99999 and do a getpwnam(). However most machines have less than 5 accounts, so it's not optimal. I don't know what framework ...