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

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(
    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.