Tagged Questions
3
votes
3answers
190 views
Can I skip a whole file with the <> operator?
The following Perl code has an obvious inefficiency;
while (<>)
{
if ($ARGV =~ /\d+\.\d+\.\d+/) {next;}
... or do something useful
}
The code will step through every line of the file we ...
2
votes
2answers
151 views
Finding pipe and redirects in perl @ARGV
When writing a traditional Unix/Linux program perl provides the diamond operator <>. I'm trying to understand how to test if there are no argument passed at all to avoid the perl script sitting in ...