in reply to Re: Passing Options
in thread Passing Options
Program is called with:use Getopt::Long; our $realeases; GetOptions( 't=s' => \ our $target, 'b=s' => \ our $buildtype, 'r=s' => \ $releases ); our @releases = split(/\:/,$releases);
perl script.pl -r 1:2:3 -b blah -t blah
|
|---|