NAME
   Tak - Multi host remote control over ssh

SYNOPSIS
     bin/tak -h user1@host1 -h user2@host2 exec cat /etc/hostname

   or

     in Takfile:

     package Tak::MyScript;

     use Tak::Takfile;
     use Tak::ObjectClient;

     sub each_get_homedir {
       my ($self, $remote) = @_;
       my $oc = Tak::ObjectClient->new(remote => $remote);
       my $home = $oc->new_object('Path::Class::Dir')->absolute->stringify;
       $self->stdout->print(
         $remote->host.': '.$home."\n"
       );
     }

     1;

   then

     tak -h something get-homedir

WHERE'S THE REST?
   A drink leaked in my bag on the way back from LPW. You'll get more once
   I get my laptop's drive into an enclosure and decant the slides.

AUTHOR
   mst - Matt S. Trout (cpan:MSTROUT) <[email protected]>

CONTRIBUTORS
   None required yet. Maybe this module is perfect (hahahahaha ...).

COPYRIGHT
   Copyright (c) 2011 the strictures "AUTHOR" and "CONTRIBUTORS" as listed
   above.

LICENSE
   This library is free software and may be distributed under the same
   terms as perl itself.