
July 24th, 2000, 10:35 AM
|
 |
SwollenMember
|
|
Join Date: Jun 2000
Location: the master control
Posts: 264
Time spent in forums: 13 h 14 m 57 sec
Reputation Power: 13
|
|
|
lets say you have a script called 'jerk.pl' and then when you run the script you type this at the command line:
jerk.pl loser hoser
$ARGV[0] would be loser
$ARGV[1] would be hoser
basically it is an array that stores the arguments you pass to the script...that is the short version
|