HomeSort by relevance Sort by last modified time
    Searched refs:Getopt (Results 1 - 25 of 73) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
newgetopt.pl 5 # It is now just a wrapper around the Getopt::Long module.
10 # Suggested alternative: Getopt::Long
14 # Values for $order. See GNU getopt.c for details.
43 use Getopt::Long;
49 $Getopt::Long::debug = $newgetopt::debug
51 $Getopt::Long::autoabbrev = $newgetopt::autoabbrev
53 $Getopt::Long::getopt_compat = $newgetopt::getopt_compat
55 $Getopt::Long::option_start = $newgetopt::option_start
57 $Getopt::Long::order = $newgetopt::order
59 $Getopt::Long::bundling = $newgetopt::bundling
    [all...]
getopt.pl 1 ;# $RCSfile: getopt.pl,v $$Revision: 4.1 $$Date: 92/08/07 18:23:58 $
9 # Suggested alternatives: Getopt::Long or Getopt::Std
18 ;# do Getopt('oDI'); # -o, -D & -I take arg. Sets opt_* as a side effect.
20 sub Getopt {
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Getopt/Long/t/
gol-oo.t 10 use Getopt::Long;
11 die("Getopt::Long version 2.23_03 required--this is only version ".
12 $Getopt::Long::VERSION)
13 unless $Getopt::Long::VERSION ge "2.24";
17 my $p = new Getopt::Long::Parser (config => ["no_ignore_case"]);
gol-basic.t 10 use Getopt::Long qw(:config no_ignore_case);
11 die("Getopt::Long version 2.23_03 required--this is only version ".
12 $Getopt::Long::VERSION)
13 unless $Getopt::Long::VERSION ge "2.24";
gol-linkage.t 10 use Getopt::Long;
15 Getopt::Long::Configure ("no_ignore_case");
27 Getopt::Long::Configure ("default","no_ignore_case");
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Net/demos/
ftp 5 use Getopt::Long;
pop3 5 use Getopt::Long;
nntp 4 use Getopt::Long;
smtp.self 5 use Getopt::Long;
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Getopt/
Std.t 10 use Getopt::Std;
14 # First we test the getopt function
16 getopt('f');
23 getopt 'il', \%opt;
55 # Then try the Getopt::Long module
57 use Getopt::Long;
70 'Getopt::Long::GetOptions succeeded'
Std.pm 1 package Getopt::Std;
7 getopt, getopts - Process single-character switches with switch clustering
11 use Getopt::Std;
13 getopt('oDI'); # -o, -D & -I take arg. Sets $opt_* as a side effect.
14 getopt('oDI', \%opts); # -o, -D & -I take arg. Values in %opts
21 The getopt() function processes single-character switches with switch
38 For those of you who don't like additional global variables being created, getopt()
59 Note that due to excessive paranoia, if $Getopt::Std::STANDARD_HELP_VERSION
63 to set $Getopt::Std::STANDARD_HELP_VERSION to true.
66 $Getopt::Std::OUTPUT_HELP_VERSION. One can print the messages of C<--help
87 sub getopt (;$$) { subroutine
    [all...]
Long.pm 0 # Getopt::Long.pm -- Universal options parsing
3 package Getopt::Long;
133 # Values for $order. See GNU getopt.c for details.
142 package Getopt::Long::Parser;
147 Getopt::Long::Configure ()
162 my $save = Getopt::Long::Configure ($default_config, @{$atts{config}});
163 $self->{settings} = Getopt::Long::Configure ($save);
183 my $save = Getopt::Long::Configure ($self->{settings}, @_);
186 $self->{settings} = Getopt::Long::Configure ($save);
193 my $save = Getopt::Long::Configure ($self->{settings})
    [all...]
  /onnv/onnv-gate/usr/src/cmd/svc/profile/
listsvcs.pl 38 use Getopt::Std;
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Devel/DProf/t/
DProf.t 20 use Getopt::Std 'getopts';
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/lib/dprof/
V.pm 3 use Getopt::Std 'getopts';
  /onnv/onnv-gate/usr/src/cmd/auditrecord/
audit_record_xml 33 use Getopt::Std;
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/cmd/jdtrace/
Makefile 82 JAVASRC= JDTrace.java Getopt.java
Getopt.java 36 * A Java port of Solaris {@code lib/libc/port/gen/getopt.c}, which is a
37 * port of System V UNIX getopt. See <b>getopt(3C)</b> and SUS/XPG
38 * getopt() for function definition and requirements. Unlike that
42 public class Getopt {
56 * getopt() while extracting aggregated short-options (ie: -abcd).
61 * Creates a {Code Getopt} instance to parse the given command-line
66 public Getopt(String programName, String[] args,
70 // No defensive copy; Getopt is expected to modify the given
170 * Getopt} constructo
309 getopt() method in class:Getopt
    [all...]
  /onnv/onnv-gate/usr/src/cmd/projadd/
projdel.pl 36 use Getopt::Long qw(:config no_ignore_case bundling);
projadd.pl 36 use Getopt::Std;
37 use Getopt::Long qw(:config no_ignore_case bundling);
  /onnv/onnv-gate/usr/src/tools/ctf/scripts/
ctfcvtptbl.pl 76 use Getopt::Std;
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/Command/
MM.pm 87 require Getopt::Long;
91 # We will cheat and just use Getopt::Long. We fool it by putting
94 Getopt::Long::config ('bundling_override');
95 Getopt::Long::GetOptions (\%options,
  /onnv/onnv-gate/usr/src/tools/codesign/
signit.pl 50 use Getopt::Std;
  /onnv/onnv-gate/usr/src/tools/scripts/
genoffsets.pl 42 use Getopt::Std;
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/utils/port/
EditedFiles 19 use Getopt::Std;

Completed in 910 milliseconds

1 2 3