in reply to Re: How to write a program to read stdin or command line?
in thread How to write a program to read stdin or command line?
I don't see why -i is required. If it's not on the command line, then it must be on STDIN, so there's no reason to use -i.
my $input = @ARGV ? shift(@ARGV) : <STDIN>;
That's the approach <ARGV> uses.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: How to write a program to read stdin or command line?
by jdporter (Paladin) on Oct 02, 2007 at 17:50 UTC |