Subject: Re: Simple Backup Script
To: Brian Rose <lists@brianrose.net>
From: David Laight <david@l8s.co.uk>
List: netbsd-users
Date: 01/03/2005 18:47:16
On Thu, Dec 30, 2004 at 09:24:10PM -0500, Brian Rose wrote:
>
> I'm looking to backup my Samba share onto an external FAT32 drive. Is there
> a relatively simple way to do incremental backups? Basically if a file is
> changed or added, I want the script to copy only the changed or added files
> to an identical tree on the external drive.
$ touch new_mark
$ find . -newer old_mark ...
$ mv new_mark old_mark
David
--
David Laight: david@l8s.co.uk