Jun 14, 2000 #1 patso IS-IT--Management May 19, 2000 5 US I totally can't remember how you do command line arguments in perl, can anyone help?
Jun 14, 2000 #2 oinkers Programmer Jun 14, 2000 23 US just run perl with arguments such as<br><br>perl myscript.pl arg1 arg2<br><br>then in ur program u can access it by<br>ARGV[0], ARGV[1] Upvote 0 Downvote
just run perl with arguments such as<br><br>perl myscript.pl arg1 arg2<br><br>then in ur program u can access it by<br>ARGV[0], ARGV[1]
Jun 14, 2000 #3 oinkers Programmer Jun 14, 2000 23 US oops ... mistake above<br>forgot the dollar sign<br>it should be<br><br>$ARGV[0] Upvote 0 Downvote