NAME

Filesys::Virtual::SSH - remote execution Virtual Filesystem

SYNOPSIS

use Filesys::Virtual::SSH;
my $fs = Filesys::Virtual::SSH->new({
    host      => 'localhost',
    cwd       => '/',
    root_path => '/',
    home_path => '/home',
});
my @files = $fs->list("/");

# a deeply inneffecient equivalent to
# my @files = `ls -a /`;
# chomp @files;

DESCRIPTION

Filesys::Virtual::SSH invokes the ssh command line utility in order to make a remote filesystem have the same api as any other. It's primarily useful for POE::Component::Server::FTP.

AUTHOR

Richard Clamp <richardc@unixbeard.net>

COPYRIGHT

Copyright 2004, 2005 Richard Clamp. All Rights Reserved.

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

SEE ALSO

Filesys::Virtual, POE::Component::Server::FTP