NAME
Dackup::Target::Filesystem - Flexible file backup to/from the filesystem
SYNOPSIS
use Dackup;
my $source = Dackup::Target::Filesystem->new(
prefix => '/home/acme/important/' );
my $destination = Dackup::Target::Filesystem->new(
prefix => '/home/acme/backup/' );
my $dackup = Dackup->new(
directory => '/home/acme/dackup/',
source => $source,
destination => $destination,
delete => 0,
);
$dackup->backup;
DESCRIPTION
This is a Dackup target for the filesystem.
AUTHOR
Leon Brocard <acme@astray.com>
COPYRIGHT
Copyright (C) 2009, Leon Brocard.
LICENSE
This module is free software; you can redistribute it or modify it under the same terms as Perl itself.