- or download this
C:\Temp>type t.txt
This is a test sentence. And this is another one; Also so is this.
And by the way, this is the fourth sentence.
- or download this
#!/usr/bin/perl
...
foreach (@arr) {
print $_, "\n";
}
- or download this
C:\Temp>t.pl
This is a test sentence.
And this is another one;
Also so is this.
And by the way, this is the fourth sentence.