App-zoo

 view release on metacpan or  search on metacpan

script/cip  view on Meta::CPAN

#!/usr/bin/env perl
use Modern::Perl;

say `curl -s cip.cc`; 

script/down  view on Meta::CPAN

#!/usr/bin/env perl
use Modern::Perl;

$_ = $ARGV[0];
chomp;
say "Downloading $_";
`time curl -O "http://ali.ddot.cc:51179/$_" | tee /dev/null`

script/expe  view on Meta::CPAN

#!/usr/bin/perl 
use cfwp::fio;
use Modern::Perl;


say 'SUCCESS';

script/fstdown  view on Meta::CPAN

#!/usr/bin/env perl
use Modern::Perl;

$_ = $ARGV[0];
chomp;
say "Downloading $_";
`time curl -O "http://a.ddot.cc:8899/$_" | tee /dev/null`

script/fstup  view on Meta::CPAN

#!/usr/bin/env perl
use Modern::Perl;

$_ = $ARGV[0];
chomp;
say "Uploading $_";
`time curl --progress-bar -F "file=\@$_" 'http://a.ddot.cc:8899' | tee /dev/null`

script/up  view on Meta::CPAN

#!/usr/bin/env perl
use Modern::Perl;

$_ = $ARGV[0];
chomp;
say "Uploading $_";
`time curl --progress-bar -F "file=\@$_" 'http://ali.ddot.cc:51179' | tee /dev/null`

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.475 second using v1.00-cache-2.02-grep-82fe00e-cpan-d29e8ade9f55 )