- or download this
#!/usr/bin/perl -w
######################################################################
+##
...
while (<FH>) {
printf "%d:%s",$line++,<FH>;
}
- or download this
--$ ./filetest.pl
Content-type: text/plain
...
1:####################################################################
+####
--$
- or download this
#!/usr/bin/perl -w
######################################################################
+##
...
while (<FH>) {
printf "%d:%s",$line++,$_; # $_ vs. <FH>
}
- or download this
--$ ./filetest.pl
Content-type: text/plain
...
13: printf "%d:%s",$line++,$_;
14:}
--$