- or download this
#!perl
use strict;
...
{
...code inside loop...
}
- or download this
#!perl -n
use strict;
...code inside loop...
- or download this
#!perl -n
use strict;
...code to do with every line of input stored in $_...
print $_; # or just print
- or download this
#!perl -p
use strict;
...code to do with every line of input stored in $_...