On Wed, Jun 15, 2005 at 12:38:21PM -0400, Mike T. Machenry ([EMAIL PROTECTED]) wrote: > in between them. I want to get an array of the non-option args e.i.: > > @ARGV = qw(--x 5 --bar = 6 7 --foo 8 9) > myfunc() = (7, 9);
After you run GetOptions, @ARGV should only contain those args that weren't handled. I'm pretty sure. -- Andy Lester => [EMAIL PROTECTED] => www.petdance.com => AIM:petdance _______________________________________________ Boston-pm mailing list [email protected] http://mail.pm.org/mailman/listinfo/boston-pm

