in reply to Re: $ARGV[0] meaningin thread $ARGV[0] meaning
Except it's wrong. :P s/argv/ARGV/;
moo@cow~>perl -le 'print $argv[0] || "NONE 4 U"' OHAI NONE 4 U moo@cow~>perl -le 'print $ARGV[0] || "NONE 4 U"' OHAI OHAI [download]