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;

DEPENDENCIES

This module has external dependencies on the following modules:

Filesys::Virtual
String::ShellQuote
perl	5.006

INSTALLATION

perl Build.PL
perl Build test

and if all goes well

perl Build install

HISTORY

What changed over the last 3 revisions

0.02 Friday 30th April, 2004
unstealthed the dependency on String::ShellQuote, fixed a docubug
0.01 Friday 30th April, 2004
Initial CPAN release

AUTHOR

Richard Clamp <richardc@unixbeard.net>

COPYRIGHT

Copyright 2004 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