Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created November 13, 2017 06:09
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save Whateverable/44190923ec32ed4f2d55a6498c245f63 to your computer and use it in GitHub Desktop.
greppable6
File Code
TBROWDER/Net-IP-Lite
…/TODO :32:
use Getopt::Long (DONE)
TBROWDER/Net-IP-Lite
…/create-md.p6 :3:
use Getopt::Std;
TBROWDER/Net-IP-Lite
…/create-md.p6 :8:
my %opts; # Getopts::Std requires this (name it anything you want)
TOKUHIROM/HTTP-Server-Tiny
…/moar-profiler-cli.pl :7:
use Getopt::Long;
Leont/getopt-long6
…/META6.json :3:
"name" : "Getopt::Long",
Leont/getopt-long6
…/META6.json :7:
"Getopt::Long" : "lib/Getopt/Long.pm"
Leont/getopt-long6
…/README.md :1:
This is a powerful Getopt implementation. It's currently functional but rough in its API and lacking documentation, this will be improved gradually.
Leont/getopt-long6
…/Long.pm :3:
unit class Getopt::Long;
Leont/getopt-long6
…/Long.pm :245:
m(
Leont/getopt-long6
…/basic.t :5:
use Getopt::Long;
Leont/getopt-long6
…/basic.t :7:
my $capture = Getopt::Long.new('foo
Leont/getopt-long6
…/basic.t :13:
my $capture2 = Getopt::Long.new(&main).get-options(<--foo bar --fooo bar2 --bar baz>);
Tux/CSV
…/bugs.pl :14:
use Getopt::Long qw(:config bundling);
Tux/CSV
…/time.pl :14:
use Getopt::Long qw(:config bundling);
araraloren/perl6-app-snippet
…/META6.json :10:
"Getopt::Advance",
araraloren/perl6-app-snippet
…/snippet :4:
use Getopt::Advance;
araraloren/perl6-app-snippet
…/Common.pm6 :2:
use Getopt::Advance;
araraloren/perl6-getopt-advance
…/META6.json :3:
"name" : "Getopt::Advance",
araraloren/perl6-getopt-advance
…/META6.json :20:
"Getopt::Advance" : "lib/Getopt/Advance.pm6",
araraloren/perl6-getopt-advance
…/META6.json :21:
"Getopt::Advance::Argument" : "lib/Getopt/Advance/Argument.pm6",
araraloren/perl6-getopt-advance
…/META6.json :22:
"Getopt::Advance::Exception" : "lib/Getopt/Advance/Exception.pm6",
araraloren/perl6-getopt-advance
…/META6.json :23:
"Getopt::Advance::Group" : "lib/Getopt/Advance/Group.pm6",
araraloren/perl6-getopt-advance
…/META6.json :24:
"Getopt::Advance::Helper" : "lib/Getopt/Advance/Helper.pm6",
araraloren/perl6-getopt-advance
…/META6.json :25:
"Getopt::Advance::NonOption" : "lib/Getopt/Advance/NonOption.pm6",
araraloren/perl6-getopt-advance
…/META6.json :26:
"Getopt::Advance::Option" : "lib/Getopt/Advance/Option.pm6",
araraloren/perl6-getopt-advance
…/META6.json :27:
"Getopt::Advance::Parser" : "lib/Getopt/Advance/Parser.pm6",
araraloren/perl6-getopt-advance
…/META6.json :28:
"Getopt::Advance::Types" : "lib/Getopt/Advance/Types.pm6"
araraloren/perl6-getopt-advance
…/README.adoc :3:
:description: An advance command line parse tool replace Getopt::Kinoko
araraloren/perl6-getopt-advance
…/README.adoc :17:
An advance command line parse tool replace Getopt::Kinoko
araraloren/perl6-getopt-advance
…/README.adoc :21:
`Getopt::Advance` is a powerful command line option parsing module, it suppot many
araraloren/perl6-getopt-advance
…/README.adoc :160:
* `multi sub getopt( Str $optstring, *%args) of Getopt::Advance::ReturnValue`
araraloren/perl6-getopt-advance
…/README.adoc :161:
* `multi sub getopt(@args, Str $optstring, *%args) of Getopt::Advance::ReturnValue`
araraloren/perl6-getopt-advance
…/README.adoc :162:
* `multi sub getopt( *@optsets, *%args) of Getopt::Advance::ReturnValue`
araraloren/perl6-getopt-advance
…/README.adoc :163:
* `multi sub getopt(@args, *@optsets, *%args) of Getopt::Advance::ReturnValue`
araraloren/perl6-getopt-advance
…/README.adoc :167:
Once an `OptionSet` matching success, it will return `Getopt::Advance::ReturnValue`.
araraloren/perl6-getopt-advance
…/README.adoc :171:
NOTE: The definition of Getopt::Advance::ReturnValue:
araraloren/perl6-getopt-advance
…/README.adoc :174:
class Getopt::Advance::ReturnValue {
araraloren/perl6-getopt-advance
…/README.adoc :245:
link:doc/Getopt/Advance.pod6[Getopt-Advance]
araraloren/perl6-getopt-advance
…/README.adoc :251:
link:https://github.com/araraloren/perl6-app-snippet[an app used Getopt::Advance]
araraloren/perl6-getopt-advance
…/README.adoc :296:
zef install Getopt::Advance
araraloren/perl6-getopt-advance
…/README.zh.adoc :4:
An advance command line parse tool replace Getopt::Kinoko
araraloren/perl6-getopt-advance
…/README.zh.adoc :8:
`Getopt::Advance` 是一个强大的命令行选项解析模块,支持 `unix-style`、`gnu-style` 以及
araraloren/perl6-getopt-advance
…/README.zh.adoc :10:
选项,并且还提供了类似 `Getopt::Kinoko` 管理选项的 `radio`、`multi` 组设施。此外你还可以
araraloren/perl6-getopt-advance
…/README.zh.adoc :58:
use Getopt::Advance;
araraloren/perl6-getopt-advance
…/README.zh.adoc :59:
use Getopt::Advance::Helper;
araraloren/perl6-getopt-advance
…/README.zh.adoc :60:
use Getopt::Advance::Exception;
araraloren/perl6-getopt-advance
…/README.zh.adoc :130:
zef install Getopt::Advance
araraloren/perl6-getopt-advance
…/Advance.pod6 :5:
Getopt::Advance - An advance command line option parsing tools.
araraloren/perl6-getopt-advance
…/Advance.pod6 :12:
use Getopt::Advance;
araraloren/perl6-getopt-advance
…/Advance.pod6 :13:
use Getopt::Advance::Helper;
araraloren/perl6-getopt-advance
…/Advance.pod6 :14:
use Getopt::Advance::Exception;
araraloren/perl6-getopt-advance
…/Advance.pod6 :102:
`Getopt::Advance` is a powerful command line option parsing module, it suppot many
araraloren/perl6-getopt-advance
…/Advance.pm6 :2:
use Getopt::Advance::Helper;
araraloren/perl6-getopt-advance
…/Advance.pm6 :3:
use Getopt::Advance::Types;
araraloren/perl6-getopt-advance
…/Advance.pm6 :4:
use Getopt::Advance::Parser;
araraloren/perl6-getopt-advance
…/Advance.pm6 :5:
use Getopt::Advance::Group;
araraloren/perl6-getopt-advance
…/Advance.pm6 :6:
use Getopt::Advance::Option;
araraloren/perl6-getopt-advance
…/Advance.pm6 :7:
use Getopt::Advance::Argument;
araraloren/perl6-getopt-advance
…/Advance.pm6 :8:
use Getopt::Advance::Exception;
araraloren/perl6-getopt-advance
…/Advance.pm6 :9:
use Getopt::Advance::NonOption;
araraloren/perl6-getopt-advance
…/Advance.pm6 :60:
:$x-style, #`(giving priority to x-style) ) of Getopt::Advance::ReturnValue is export {
araraloren/perl6-getopt-advance
…/Group.pm6 :2:
use Getopt::Advance::Exception;
araraloren/perl6-getopt-advance
…/NonOption.pm6 :2:
use Getopt::Advance::Argument;
araraloren/perl6-getopt-advance
…/NonOption.pm6 :3:
use Getopt::Advance::Exception;
araraloren/perl6-getopt-advance
…/Option.pm6 :2:
use Getopt::Advance::Exception;
araraloren/perl6-getopt-advance
…/Parser.pm6 :2:
use Getopt::Advance::Option;
araraloren/perl6-getopt-advance
…/Parser.pm6 :3:
use Getopt::Advance::Argument;
araraloren/perl6-getopt-advance
…/Parser.pm6 :4:
use Getopt::Advance::Exception;
araraloren/perl6-getopt-advance
…/Parser.pm6 :16:
class Getopt::Advance::ReturnValue {
araraloren/perl6-getopt-advance
…/Parser.pm6 :214:
) of Getopt::Advance::ReturnValue is export {
araraloren/perl6-getopt-advance
…/Parser.pm6 :283:
return Getopt::Advance::ReturnValue.new(
araraloren/perl6-getopt-advance
…/Parser.pm6 :300:
) of Getopt::Advance::ReturnValue is export {
araraloren/perl6-getopt-advance
…/Parser.pm6 :365:
return Getopt::Advance::ReturnValue.new(
araraloren/perl6-getopt-advance
…/Types.pm6 :2:
use Getopt::Advance::Option;
araraloren/perl6-getopt-advance
…/Types.pm6 :3:
use Getopt::Advance::Exception;
araraloren/perl6-getopt-advance
…/create-symbol-directory.p6 :4:
use Getopt::Advance;
araraloren/perl6-getopt-advance
…/create-symbol-directory.p6 :5:
use Getopt::Advance::Exception;
araraloren/perl6-getopt-advance
…/find-file.p6 :3:
use Getopt::Advance;
araraloren/perl6-getopt-advance
…/find-file.p6 :4:
use Getopt::Advance::Helper;
araraloren/perl6-getopt-advance
…/find-file.p6 :5:
use Getopt::Advance::Exception;
araraloren/perl6-getopt-advance
…/find-source.p6 :3:
use Getopt::Advance;
araraloren/perl6-getopt-advance
…/find-source.p6 :4:
use Getopt::Advance::Exception;
araraloren/perl6-getopt-advance
…/01-load.t :3:
use Getopt::Advance;
araraloren/perl6-getopt-advance
…/02-option.t :3:
use Getopt::Advance;
araraloren/perl6-getopt-advance
…/02-option.t :4:
use Getopt::Advance::Option;
araraloren/perl6-getopt-advance
…/03-types.t :3:
use Getopt::Advance;
araraloren/perl6-getopt-advance
…/03-types.t :4:
use Getopt::Advance::Types;
araraloren/perl6-getopt-advance
…/03-types.t :5:
use Getopt::Advance::Option;
araraloren/perl6-getopt-advance
…/05-main.t :3:
use Getopt::Advance;
araraloren/perl6-getopt-advance
…/06-cmd.t :4:
use Getopt::Advance;
araraloren/perl6-getopt-advance
…/07-pos.t :3:
use Getopt::Advance;
araraloren/perl6-getopt-advance
…/07-pos.t :4:
use Getopt::Advance::Exception;
araraloren/perl6-getopt-advance
…/08-helper.t :3:
use Getopt::Advance;
araraloren/perl6-getopt-advance
…/08-helper.t :4:
use Getopt::Advance::Helper;
araraloren/perl6-getopt-advance
…/08-helper.t :5:
use Getopt::Advance::Exception;
araraloren/perl6-getopt-advance
…/09-clone.t :3:
use Getopt::Advance;
araraloren/perl6-getopt-advance
…/10-x-style.t :4:
use Getopt::Advance;
araraloren/perl6-getopt-advance
…/11-bsd-style.t :3:
use Getopt::Advance;
araraloren/perl6-getopt-advance
…/12-optstring.t :3:
use Getopt::Advance;
araraloren/perl6-getopt-advance
…/13-group.t :3:
use Getopt::Advance;
gfldex/perl6-pod-to-bigpage
…/html.xhtml :855:
<a name="t1.12.3.2"></a><h3 id="_language_5to6-nutshell.pod6-Getopt::Long">1.12.3.2 <span class="code">Getopt::Long</span></h3>
gfldex/perl6-pod-to-bigpage
…/html.xhtml :859:
use Getopt::Long;
gfldex/perl6-pod-to-bigpage
…/html.xhtml :23028:
<a href="#t1.12.3.2"><li class="toc-level toc-level-3"><span class="toc-number">1.12.3.2</span> <span class="code">Getopt::Long</span></li></a>
jonathanstowe/META6
…/projects.json :6722:
"Getopt::Tiny" : "lib/Getopt/Tiny.pm6"
jonathanstowe/META6
…/projects.json :6725:
"source-url" : "git://github.com/tokuhirom/p6-Getopt-Tiny.git",
jonathanstowe/META6
…/projects.json :6729:
"name" : "Getopt::Tiny",
jonathanstowe/META6
…/projects.json :6832:
"Getopt::Tiny",
jonathanstowe/META6
…/projects.json :10215:
"name" : "Getopt::Long",
jonathanstowe/META6
…/projects.json :10218:
"Getopt::Long" : "lib/Getopt/Long.pm"
jonathanstowe/META6
…/projects.json :11416:
"Getopt::Type" : "lib/Getopt/Type.pm"
jonathanstowe/META6
…/projects.json :11422:
"name" : "Getopt::Type",
jonathanstowe/META6
…/projects.json :11424:
"bugtracker" : "https://github.com/tadzik/Getopt-Type/issues",
jonathanstowe/META6
…/projects.json :11425:
"source" : "git://github.com/tadzik/Getopt-Type.git"
jonathanstowe/META6
…/projects.json :11428:
"description" : "MAIN? Getopt semantics? Why not both?",
jonathanstowe/META6
…/projects.json :11429:
"source-url" : "git://github.com/tadzik/Getopt-Type.git",
jonathanstowe/META6
…/projects.json :11439:
"Getopt::Type"
perl6/doc
…/5to6-nutshell.pod6 :1617:
=head3 C<Getopt::Long>
perl6/doc
…/5to6-nutshell.pod6 :1624:
use Getopt::Long;
ppentchev/perl6-Getopt-Std
…/.gitrepo :7:
remote = https://github.com/ppentchev/perl6-Getopt-Std.git
ppentchev/perl6-Getopt-Std
…/CHANGES.md :1:
Change log for the Getopt::Std Perl 6 module
ppentchev/perl6-Getopt-Std
…/CHANGES.md :16:
- Throw an X::Getopt::Std exception instead of returning false.
ppentchev/perl6-Getopt-Std
…/META6.json :3:
"name": "Getopt::Std",
ppentchev/perl6-Getopt-Std
…/META6.json :9:
"Getopt::Std": "lib/Getopt/Std.pm6"
ppentchev/perl6-Getopt-Std
…/META6.json :17:
"source-url": "https://github.com/ppentchev/perl6-Getopt-Std.git"
ppentchev/perl6-Getopt-Std
…/README.md :4:
Getopt::Std - Process single-character options with option clustering
ppentchev/perl6-Getopt-Std
…/README.md :9:
use Getopt::Std;
ppentchev/perl6-Getopt-Std
…/README.md :17:
CATCH { when X::Getopt::Std { .message.note; usage } };
ppentchev/perl6-Getopt-Std
…/README.md :74:
Throws an `X::Getopt::Std` exception if an invalid option string has been specified or an unknown option has been found in the arguments array.
ppentchev/perl6-Getopt-Std
…/README.md :102:
The Getopt::Std module is distributed under the terms of the Artistic License 2.0. For more details, see the full text of the license in the file LICENSE in the source distribution.
ppentchev/perl6-Getopt-Std
…/Std.pm6 :5:
unit module Getopt::Std:ver<1.0.1>:auth<github:ppentchev>;
ppentchev/perl6-Getopt-Std
…/Std.pm6 :7:
class X::Getopt::Std is Exception
ppentchev/perl6-Getopt-Std
…/Std.pm6 :14:
fail X::Getopt::Std.new(:$message)
ppentchev/perl6-Getopt-Std
…/Std.pm6 :17:
grammar GetoptDefs
ppentchev/perl6-Getopt-Std
…/Std.pm6 :56:
my $m = GetoptDefs.parse($optstr);
ppentchev/perl6-Getopt-Std
…/Std.pm6 :138:
Getopt::Std - Process single-character options with option clustering
ppentchev/perl6-Getopt-Std
…/Std.pm6 :143:
use Getopt::Std;
ppentchev/perl6-Getopt-Std
…/Std.pm6 :151:
CATCH { when X::Getopt::Std { .message.note; usage } };
ppentchev/perl6-Getopt-Std
…/Std.pm6 :240:
Throws an C<X::Getopt::Std> exception if an invalid option string has been
ppentchev/perl6-Getopt-Std
…/Std.pm6 :274:
The Getopt::Std module is distributed under the terms of
ppentchev/perl6-Getopt-Std
…/01-getopts.t :8:
use Getopt::Std :DEFAULT;
ppentchev/perl6-Getopt-Std
…/03-nonopts.t :8:
use Getopt::Std;
rakudo-p5/v5
…/TODO_core_modules.md :241:
[s] Getopt::Long - Extended processing of command line options
rakudo-p5/v5
…/TODO_core_modules.md :242:
[s] Getopt::Std - Process single-character switches with switch clustering
rakudo-p5/v5
…/core_modules :259:
#~ Getopt::Long - Extended processing of command line options
rakudo-p5/v5
…/core_modules :260:
#~ Getopt::Std - Process single-character switches with switch clustering
rakudo-p5/v5
…/Config.pm :615:
'extensions' => 'B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd DB_File Data/Dumper Devel/DProf Devel/PPPort Devel/Peek Digest/MD5 Digest/SHA Enc…
rakudo-p5/v5
…/Config.pm :881:
'nonxs_ext' => 'Archive/Extract Archive/Tar Attribute/Handlers AutoLoader B/Debug B/Deparse B/Lint CGI CPAN CPAN/Meta CPAN/Meta/YAML CPANPLUS…
rakudo-p5/v5
…/Long.pm :3:
module Getopt::Long {
rakudo-p5/v5
…/Long.pm :10:
#~ %o<&subname> := &Getopt::Long::subname;
rakudo-p5/v5
…/Long.pm :18:
#~ %o<&subname> := &Getopt::Long::subname if $_ eq 'ALL'
rakudo-p5/v5
…/Std.pm :3:
module Getopt::Std {
rakudo-p5/v5
…/Std.pm :10:
#~ %o<&subname> := &Getopt::Std::subname;
rakudo-p5/v5
…/Std.pm :18:
#~ %o<&subname> := &Getopt::Std::subname if $_ eq 'ALL'
rakudo-p5/v5
…/harness :3:
# note: Due to a limitation in Getopt::Long options that should be passed
rakudo-p5/v5
…/harness :11:
use Getopt::Long qw(:config pass_through);
rakudo-p5/v5
…/test_summary :31:
use Getopt::Long;
spitsh/spitsh
…/CHANGELOG.md :11:
- Completely Re-implemented cli with Getopt::Parse (included in lib
spitsh/spitsh
…/META6.json :42:
"Getopt::Parse" : "lib/Getopt/Parse.pm6"
spitsh/spitsh
…/Parse.pm6 :11:
class Getopt::Parse::X::Missing {...}
spitsh/spitsh
…/Parse.pm6 :12:
class Getopt::Parse::X {...}
spitsh/spitsh
…/Parse.pm6 :61:
grammar Getopt::Grammar {
spitsh/spitsh
…/Parse.pm6 :248:
Getopt::Parse::X.new(
spitsh/spitsh
…/Parse.pm6 :274:
Getopt::Parse::X::Missing.new(
spitsh/spitsh
…/Parse.pm6 :348:
class Getopt::Parse {
spitsh/spitsh
…/Parse.pm6 :352:
has $.grammar = Getopt::Grammar;
spitsh/spitsh
…/Parse.pm6 :525:
class Getopt::Parse::X is Exception is rw {
spitsh/spitsh
…/Parse.pm6 :546:
class Getopt::Parse::X::Missing is Getopt::Parse::X {
spitsh/spitsh
…/cli.pm6 :1:
use Getopt::Parse;
spitsh/spitsh
…/cli.pm6 :247:
constant $parser = Getopt::Parse.new(
tadzik/App-redpanda
…/META6.json :11:
"Getopt::Type"
tadzik/App-redpanda
…/redpanda :6:
use Getopt::Type;
tadzik/Getopt-Type
…/.gitrepo :7:
remote = git://github.com/tadzik/Getopt-Type.git
tadzik/Getopt-Type
…/META6.json :2:
"name" : "Getopt::Type",
tadzik/Getopt-Type
…/META6.json :5:
"description" : "MAIN? Getopt semantics? Why not both?",
tadzik/Getopt-Type
…/META6.json :8:
"source-url" : "git://github.com/tadzik/Getopt-Type.git",
tadzik/Getopt-Type
…/META6.json :13:
"bugtracker" : "https://github.com/tadzik/Getopt-Type/issues",
tadzik/Getopt-Type
…/META6.json :14:
"source" : "git://github.com/tadzik/Getopt-Type.git"
tadzik/Getopt-Type
…/META6.json :17:
"Getopt::Type" : "lib/Getopt/Type.pm"
tadzik/Getopt-Type
…/README.md :1:
# Getopt::Type
tadzik/Getopt-Type
…/README.md :3:
## MAIN? Getopt semantics? Why not both?
tadzik/Getopt-Type
…/README.md :5:
use Getopt::Type;
tadzik/Getopt-Type
…/Type.pm :1:
unit module Getopt::Type;
tadzik/Getopt-Type
…/Type.pm :3:
class Getopt::Type::Constraint {
tadzik/Getopt-Type
…/Type.pm :47:
return Getopt::Type::Constraint.new: @args;
tadzik/Getopt-Type
…/01-basic.t :2:
use Getopt::Type;
tokuhirom/p6-Crust
…/META6.json :13:
"Getopt::Tiny",
tokuhirom/p6-Crust
…/Runner.pm6 :5:
use Getopt::Tiny;
tokuhirom/p6-Crust
…/Runner.pm6 :29:
@args = Getopt::Tiny.new(:pass-through)
tokuhirom/p6-Getopt-Tiny
…/.gitrepo :7:
remote = git://github.com/tokuhirom/p6-Getopt-Tiny.git
tokuhirom/p6-Getopt-Tiny
…/META6.json :2:
"name" : "Getopt::Tiny",
tokuhirom/p6-Getopt-Tiny
…/META6.json :3:
"source-url" : "git://github.com/tokuhirom/p6-Getopt-Tiny.git",
tokuhirom/p6-Getopt-Tiny
…/META6.json :7:
"Getopt::Tiny" : "lib/Getopt/Tiny.pm6"
tokuhirom/p6-Getopt-Tiny
…/README.md :1:
Build Status
tokuhirom/p6-Getopt-Tiny
…/README.md :6:
Getopt::Tiny - Tiny option parser for Perl6
tokuhirom/p6-Getopt-Tiny
…/README.md :13:
use Getopt::Tiny;
tokuhirom/p6-Getopt-Tiny
…/README.md :27:
Getopt::Tiny is tiny command line option parser library for Perl6.
tokuhirom/p6-Getopt-Tiny
…/README.md :89:
### `my $opt = Getopt::Tiny.new()`
tokuhirom/p6-Getopt-Tiny
…/synopsis.p6 :3:
use Getopt::Tiny;
tokuhirom/p6-Getopt-Tiny
…/Tiny.pm6 :2:
unit class Getopt::Tiny;
tokuhirom/p6-Getopt-Tiny
…/Tiny.pm6 :356:
my grammar GetoptionsGrammar {
tokuhirom/p6-Getopt-Tiny
…/Tiny.pm6 :371:
my class GetoptionsAction {
tokuhirom/p6-Getopt-Tiny
…/Tiny.pm6 :380:
my $getopt = Getopt::Tiny.new(
tokuhirom/p6-Getopt-Tiny
…/Tiny.pm6 :384:
my ($short, $long, $type) = @(GetoptionsGrammar.parse($def, :actions(GetoptionsAction)).made);
tokuhirom/p6-Getopt-Tiny
…/Tiny.pm6 :415:
Getopt::Tiny - Tiny option parser for Perl6
tokuhirom/p6-Getopt-Tiny
…/Tiny.pm6 :421:
use Getopt::Tiny;
tokuhirom/p6-Getopt-Tiny
…/Tiny.pm6 :434:
Getopt::Tiny is tiny command line option parser library for Perl6.
tokuhirom/p6-Getopt-Tiny
…/Tiny.pm6 :491:
=head3 C<my $opt = Getopt::Tiny.new()>
tokuhirom/p6-Getopt-Tiny
…/01-basic.t :3:
use Getopt::Tiny;
tokuhirom/p6-Getopt-Tiny
…/01-basic.t :8:
my @positional = Getopt::Tiny.new()
tokuhirom/p6-Getopt-Tiny
…/01-basic.t :18:
my @positional = Getopt::Tiny.new()
tokuhirom/p6-Getopt-Tiny
…/01-basic.t :28:
my @positional = Getopt::Tiny.new()
tokuhirom/p6-Getopt-Tiny
…/01-basic.t :39:
my @positional = Getopt::Tiny.new()
tokuhirom/p6-Getopt-Tiny
…/01-basic.t :51:
my @positional = Getopt::Tiny.new()
tokuhirom/p6-Getopt-Tiny
…/01-basic.t :61:
my @positional = Getopt::Tiny.new()
tokuhirom/p6-Getopt-Tiny
…/02-get-options.t :4:
use Getopt::Tiny;
tokuhirom/p6-HTTP-Server-Tiny
…/moar-profiler-cli.pl :7:
use Getopt::Long;
zostay/p6-Getopt-ForClass
…/.gitrepo :7:
remote = git://github.com/zostay/p6-Getopt-ForClass.git
zostay/p6-Getopt-ForClass
…/META6.json :4:
"Getopt::ForClass" : "lib/Getopt/ForClass.pm6"
zostay/p6-Getopt-ForClass
…/META6.json :11:
"source" : "git://github.com/zostay/p6-Getopt-ForClass.git"
zostay/p6-Getopt-ForClass
…/META6.json :16:
"source-url" : "git://github.com/zostay/p6-Getopt-ForClass.git",
zostay/p6-Getopt-ForClass
…/META6.json :18:
"name" : "Getopt::ForClass",
zostay/p6-Getopt-ForClass
…/README.md :4:
Getopt::ForClass - Use MAIN to dispatch to a class
zostay/p6-Getopt-ForClass
…/README.md :10:
use Getopt::ForClass;
zostay/p6-Getopt-ForClass
…/ForClass.pm6 :1:
unit module Getopt::ForClass;
zostay/p6-Getopt-ForClass
…/ForClass.pod6 :1:
=NAME Getopt::ForClass - Use MAIN to dispatch to a class
zostay/p6-Getopt-ForClass
…/ForClass.pod6 :6:
use Getopt::ForClass;
zostay/p6-Getopt-ForClass
…/basic.t :4:
use Getopt::ForClass;
zostay/p6-Getopt-ForClass
…/testclass.p6 :5:
use Getopt::ForClass;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment