发布时间:2015-01-09 15:54:15
#!/usr/bin/perl -wuse strict;use Getopt::Long;my $file_name = "";my $verbose = 1;GetOptions( "file_name=s" => \$file_name, "verbose" => \$verbose,);print $file_name;print "\n";print $verbose;print "\n";.........【阅读全文】
发布时间:2014-10-28 11:26:57
首先需要安装cpanm:wget http://xrl.us/cpanm --no-check-certificate然后,后用cpanm安装cpan-outdated。安装模块:cpanm --notest foo更新模块:cpan-outdated -p | cpanm --notest貌似,没有类似于apt-get autoremove之类的功能。......【阅读全文】