You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
435 B
Perl

#!/usr/bin/perl -w
while ( ($name, $passwd, $uid,$gid, $quota, $comment,$gcos, $dir, $shell) = getpwent ) {
print "name = $name\n";
print "passwd = $passwd\n";
print "uid = $uid\n";
print "gid = $gid\n";
print "quota = $quota\n";
print "comment = $comment\n";
print "gcos = $gcos\n";
print "dir = $dir\n";
print "shell = $shell\n\n";
}