Help for this page
#!/usr/bin/env perl use strict; ... die "What no STDIN?\n" if -t; print while <>;
$ ./stdintest.pl What no STDIN? $ echo foo | ./stdintest.pl foo $