App-rcmd

 view release on metacpan or  search on metacpan

bin/rcmd  view on Meta::CPAN

            print "$name\n";
        }
    }

    exit;
}

# check and get command line arguments
@ARGV == 2 or die $usage;
my ( $hosts, $cmd ) = @ARGV;
my $contents = do { local ( @ARGV, $/ ) = $hosts; <> };
my @hosts = split ' ', $contents;

# username to use for ssh connections
my $user;
if ($u) {
    $user = $u;
} else {
    $user = getlogin || getpwuid($<) || die "Can't get current username";
}

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

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