#!/usr/bin/perluse warnings;use strict;my @groups;while (my $name = getgrent) { push @groups, $name;}print "Groups: @groups \n";