1 ;# $RCSfile: getopt.pl,v $$Revision: 4.1 $$Date: 92/08/07 18:23:58 $
3 ;# Process single-character switches with switch clustering. Pass one argument
4 ;# which is a string containing all switches that take an argument. For each
5 ;# switch found, sets $opt_x (where x is the switch name) to the value of the
6 ;# argument, or 1 if no argument. Switches which take an argument don't care
7 ;# whether there is a space between the switch and the argument.
10 ;# do Getopt('oDI'); # -o, -D & -I take arg. Sets opt_* as a side effect.
13 local($argumentative) = @_;
14 local($_,$first,$rest);
17 while (@ARGV && ($_ = $ARGV[0]) =~ /^-(.)(.*)/) {
18 ($first,$rest) = ($1,$2);
19 if (index($argumentative,$first) >= $[) {
27 ${"opt_$first"} = $rest;