- or download this
$ cat var_gen.pl
#!/usr/bin/env perl
...
my $number = length;
print "$number\n";
}
- or download this
$ cat var_out.pl
#!/usr/bin/env perl
while (<>) {
print "Got $_"
}
- or download this
$ var_gen.pl | var_out.pl
1
...
Got 3
Got 4
Got 5