.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.40) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "CPANP 1p" .TH CPANP 1p "2021-11-24" "perl v5.32.1" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" cpanp \- The CPANPLUS launcher .SH "SYNOPSIS" .IX Header "SYNOPSIS" \&\fBcpanp\fR .PP \&\fBcpanp\fR [\-]\fBa\fR [ \-\-[\fBno\fR\-]\fIoption\fR... ]  \fIauthor\fR...  .PP \&\fBcpanp\fR [\-]\fBmfitulrcz\fR [ \-\-[\fBno\fR\-]\fIoption\fR... ]  \fImodule\fR...  .PP \&\fBcpanp\fR [\-]\fBd\fR [ \-\-[\fBno\fR\-]\fIoption\fR... ] [ \-\-\fBfetchdir\fR=... ]  \fImodule\fR...  .PP \&\fBcpanp\fR [\-]\fBxb\fR [ \-\-[\fBno\fR\-]\fIoption\fR... ] .PP \&\fBcpanp\fR [\-]\fBo\fR [ \-\-[\fBno\fR\-]\fIoption\fR... ] [ \fImodule\fR... ] .SH "DESCRIPTION" .IX Header "DESCRIPTION" This script launches the \fB\s-1CPANPLUS\s0\fR utility to perform various operations from the command line. If it's invoked without arguments, an interactive shell is executed by default. .PP Optionally, it can take a single-letter switch and one or more arguments, to perform the associated action on each argument. A summary of the available commands is listed below; \f(CW\*(C`cpanp \-h\*(C'\fR provides a detailed list. .PP .Vb 2 \& h # help information \& v # version information \& \& a AUTHOR ... # search by author(s) \& m MODULE ... # search by module(s) \& f MODULE ... # list all releases of a module \& \& i MODULE ... # install module(s) \& t MODULE ... # test module(s) \& u MODULE ... # uninstall module(s) \& d MODULE ... # download module(s) \& l MODULE ... # display detailed information about module(s) \& r MODULE ... # display README files of module(s) \& c MODULE ... # check for module report(s) from cpan\-testers \& z MODULE ... # extract module(s) and open command prompt in it \& \& x # reload CPAN indices \& \& o [ MODULE ... ] # list installed module(s) that aren\*(Aqt up to date \& b # write a bundle file for your configuration .Ve .PP Each command may be followed by one or more \fIoptions\fR. If preceded by \f(CW\*(C`no\*(C'\fR, the corresponding option will be set to \f(CW0\fR, otherwise it's set to \f(CW1\fR. .PP Example: To skip a module's tests, .PP .Vb 1 \& cpanp \-i \-\-skiptest MODULE ... .Ve .PP Valid options for most commands are \f(CW\*(C`cpantest\*(C'\fR, \f(CW\*(C`debug\*(C'\fR, \f(CW\*(C`flush\*(C'\fR, \f(CW\*(C`force\*(C'\fR, \&\f(CW\*(C`prereqs\*(C'\fR, \f(CW\*(C`storable\*(C'\fR, \f(CW\*(C`verbose\*(C'\fR, \f(CW\*(C`md5\*(C'\fR, \f(CW\*(C`signature\*(C'\fR, and \f(CW\*(C`skiptest\*(C'\fR; the \&'d' command also accepts \f(CW\*(C`fetchdir\*(C'\fR. Please consult CPANPLUS::Configure for an explanation to their meanings. .PP Example: To download a module's tarball to the current directory, .PP .Vb 1 \& cpanp \-d \-\-fetchdir=. MODULE ... .Ve