in reply to Re^3: magic-diamond <> behavior -- WHAT?!
in thread magic-diamond <> behavior -- WHAT?!
But even then, searching for <ARGV> or <>won't reveal much. But this is relevant:
local(@ARGV) = @_; ... local *POD; unless (@ARGV && $ARGV[0]) { $Podfile = "-" unless $Podfile; # stdin open(POD, "<$Podfile") || die "$0: cannot open $Podfile file for input: $!\n" +; } else { $Podfile = $ARGV[0]; # XXX: might be more filenames *POD = *ARGV; } ... my @poddata = <POD>;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: magic-diamond <> behavior -- WHAT?!
by Anonymous Monk on Oct 28, 2009 at 02:26 UTC | |
by zwon (Abbot) on Oct 28, 2009 at 08:23 UTC |