- or download this
$ cat pm_1049671_temp.txt
a b c
d e f
g h i
- or download this
$ perl -Mstrict -Mwarnings -le '
my @numbers;
...
print "@numbers";
' pm_1049671_temp.txt
a b c d e f g h i
- or download this
$ cat pm_1049671_2temp.txt
j k l
m n o
p q r
- or download this
$ perl -Mstrict -Mwarnings -le '
my @numbers;
...
print "@numbers";
' pm_1049671_temp.txt pm_1049671_2temp.txt
a b c d e f g h i j k l m n o p q r
- or download this
$ perl -Mstrict -Mwarnings -le '
print "@ARGV";
' pm_1049671_temp.txt pm_1049671_2temp.txt
pm_1049671_temp.txt pm_1049671_2temp.txt