- or download this
while ($line = <READTHIS>) {
if ($line =~ /cat/) {
print "yeppers!";
}
}
- or download this
while ($line = <READTHIS>) {
if ($line =~ /cat/) {
...
print $line;
}
}
- or download this
while ($line = <READTHIS>) {
print "MOO!\n";
...
print "yeppers!";
}
}