in reply to Re^2: $ARGV[0] meaning
in 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