in reply to 2048 character limit
But you might want to use *grent:
#!/usr/bin/perl use strict; use warnings 'all'; setgrent; while (my ($name, $passwd, $gid, $members) = getgrent) { print "$gid: $name: $members\n"; } endgrent; __END__
The setgrent and endgrent are optional.
Abigail
|
|---|