- or download this
use strict;
use warnings;
...
print $_ . "\n" && next if /no_proc/; #no processing
print "$_ : in proc \n"; #processing
}
- or download this
print ($_ . "\n") && next if /no_proc/;
- or download this
print (...) interpreted as function at ...
- or download this
if (/no_proc/){
print $_ . "\n";
next;
}