- or download this
#!/usr/bin/perl
use strict;
...
map { print "before $_\n" } @instances;
map { screwed "$_"; } @instances;
map { print "after $_\n" } @instances;
- or download this
a1
a2
- or download this
b1
b2
- or download this
before a
before b
...
file b contains b2
after
after
- or download this
before a
before b
...
opening file named b
after a
after b