Help for this page
foreach my $line (@port) { my @PORTS = split('\n', $line); ... } } }
for my $str ( map { split /\n/ } @port ) { ... }