#!perl
use strict;
use warnings;
use utf8;

use App::cpm;
exit App::cpm->new->run(@ARGV);

__END__

=head1 NAME

cpm - a fast cpan module installer

=head1 SYNOPSIS

  # install modules
  > cpm install Module1 Module2 ...

  # from cpanfile (with cpanfile.snapshot if any)
  > cpm install

  # install module to global @INC istead of local/lib/perl5
  > cpm install -g Module

=head1 OPTIONS

  -w, --workers=N
        number of workers, default: 5
  -L, --local-lib-contained=DIR
        install base, default: local/
  -g, --global
        install modules to global @INC instead of local-lib
  -v, --verbose
        verbose mode; you can see what is going on
      --mirror=URL
        base url for the cpan mirror to use, default: http://www.cpan.org
      --color, --no-color
        turn on/off color output, default: on
      --test, --no-test
        run test cases, default: no
  -V, --version
        show version
  -h, --help
        show this help

=cut
