App-Ordo

 view release on metacpan or  search on metacpan

script/ordo  view on Meta::CPAN

#!/usr/bin/env perl
use strict;
use warnings;
use FindBin qw($Bin);
use lib "$Bin/../lib";

# Internet check
#use IO::Socket::INET;
#unless (IO::Socket::INET->new(PeerAddr=>'8.8.8.8', PeerPort=>53, Proto=>'tcp', Timeout=>4)) {
#    print "No internet connection - Ordo needs access to the server.\n";
    #exit 1;
#}

use App::Ordo::Runner;

my $runner = App::Ordo::Runner->new;
@ARGV ? $runner->run(@ARGV) : $runner->run_interactive;



( run in 1.412 second using v1.01-cache-2.11-cpan-c966e8aa7e8 )