foreach (@array) { if ( $_ =~ m/linux/ ) { print "This is linux VM" . "\n"; } elsif ( $_ =~ m/Windows/ ) { print "This is a Windows VM" ."\n"; } elsif ( $_ =~ m/Other/ ) { print "I have no idea what it is". "\n"; } }