1# NAMES
2
3cpan-outdated - detect outdated CPAN modules in your environment
4
5# SYNOPSIS
6
7    # print list of outdated modules
8    % cpan-outdated
9
10    # verbose
11    % cpan-outdated --verbose
12
13    # install with cpan
14    % cpan-outdated | xargs cpan -i
15
16    # install with cpanm
17    % cpan-outdated | xargs cpanm
18
19# DESCRIPTION
20
21This module print list of outdated CPAN modules in your machine.
22
23It's same feature of 'CPAN::Shell->r', but cpan-outdated is so fast and less memory.
24
25This script can integrate with cpanm command.
26
27# DEPENDENCIES
28
29perl 5.8 or later (Actually I believe it works with pre 5.8 too but haven't tested).
30
31- LWP or 'wget' to get a index file over HTTP.
32
33- IO::Zlib or 'zcat' to decode gziped index file.
34
35- version.pm
36
37# AUTHOR
38
39Tokuhiro Matsuno
40
41# LICENSE
42
43Copyright (C) 2009 Tokuhiro Matsuno.
44
45This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
46
47# SEE ALSO
48
49[CPAN](http://search.cpan.org/search?mode=module&query=CPAN)
50