in reply to Incremental Backup

This node should give you info on how to sync files files sync

Replies are listed 'Best First'.
Re^2: Incremental Backup
by Anonymous Monk on Aug 25, 2005 at 08:10 UTC

    hi

    Thanks alot , That works !!

    #!/usr/bin/perl -w use strict; use FILE::DirSync; my $dirsync = new File::DirSync { verbose => 1, nocache => 1, localmode => 0, }; $dirsync->src("home"); $dirsync->dst("backup"); $dirsync->dirsync();