The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Yoyo - It is a tool that confirms the command result to various hosts connected with ssh.

SYNOPSIS

  package MyPackage;
  use Yoyo;

  my $yoyo = Yoyo->new();
  my $args = {
    command => 'disk_size',
    target => {
        hosts => ['host1', 'host2' ],
        perlmod => [ 'strict', 'warnings' ]
    }
  };
  my $result = execute_command( $args );

DESCRIPTION

Yoyo is a tool that confirms the command result to various hosts connected with ssh.

* The kind of the command that you can confirm is as follows. disk_size memory_size load_avg grep perlmod

METHODS

execute_command

AUTHOR

kazuhiko yamakura <yamakura@cpan.org>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO