NAME
POE::Component::RemoteTail::Job - Job class.
SYNOPSIS
my $job = $tailer->job(
host => '127.0.0.1',
path => '/home/httpd/logs/access_log',
user => 'admin',
ssh_options => '-i ~/.ssh/identity',
add_command => '| grep hoge',
);
# $job would be transformed as below.
# ssh -i ~/.ssh/identity -A 127.0.0.1 "tail -f /home/httpd/access_log | grep hoge"
DESCRIPTION
METHOD
new()
AUTHOR
Takeshi Miki <miki@cpan.org>
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.