On Sunday 02 July 2006 11:09, Bernard Li wrote: > I tried to document the arguments for prep_oscar_repos: > > Index: prep_oscar_repos > =================================================================== > --- prep_oscar_repos (revision 5092) > +++ prep_oscar_repos (working copy) > @@ -19,7 +19,7 @@ > my ($all, $verbose, $target, @include, $addonly); > GetOptions( > - "verbose" => \$verbose, > + "verbose|v=s" => \$verbose,
This should be: + "verbose|v" => \$verbose, The "=s" means that the option expects a string to be added. Like "-v aaa". Regards, Erich Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Oscar-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/oscar-devel
