1CPANPLUS::Shell(3) User Contributed Perl Documentation CPANPLUS::Shell(3)
2
3
4
6 CPANPLUS::Shell - base class for CPANPLUS shells
7
9 use CPANPLUS::Shell; # load the shell indicated by your
10 # config -- defaults to
11 # CPANPLUS::Shell::Default
12
13 use CPANPLUS::Shell qw[Classic] # load CPANPLUS::Shell::Classic;
14
15 my $ui = CPANPLUS::Shell->new();
16 my $name = $ui->which; # Find out what shell you loaded
17
18 $ui->shell; # run the ui shell
19
21 This module is the generic loading (and base class) for all "CPANPLUS"
22 shells. Through this module you can load any installed "CPANPLUS"
23 shell.
24
25 Just about all the functionality is provided by the shell that you have
26 loaded, and not by this class (which merely functions as a generic
27 loading class), so please consult the documentation of your shell of
28 choice.
29
31 Please report bugs or other issues to <bug-cpanplus@rt.cpan.org<gt>.
32
34 This module by Jos Boumans <kane@cpan.org>.
35
37 The CPAN++ interface (of which this module is a part of) is copyright
38 (c) 2001 - 2007, Jos Boumans <kane@cpan.org>. All rights reserved.
39
40 This library is free software; you may redistribute and/or modify it
41 under the same terms as Perl itself.
42
44 CPANPLUS::Shell::Default, CPANPLUS::Shell::Classic, cpanp
45
46
47
48perl v5.28.0 2018-06-06 CPANPLUS::Shell(3)