Changeset 9152 for docs/p6doc/p6doc

Show
Ignore:
Timestamp:
02/24/06 00:48:12 (3 years ago)
Author:
audreyt
Message:

* Invoking "p6doc" after installation now shows the

Perl6::Doc manpage; "p6doc tutorial" will show the
Perl6::Tutorial manpage, and so on.
The command line API needs work.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • docs/p6doc/p6doc

    r9151 r9152  
    22 
    33use strict; 
     4use Pod::Perldoc; 
    45 
    5 die "Not implemented - please write me!"; 
     6my $doc = shift || 'doc'; 
     7$doc = "Perl6::\L\u$doc"; 
     8@ARGV = $doc; 
     9 
     10exit( Pod::Perldoc->run() );