> -----Original Message----- > From: folschette [mailto:[EMAIL PROTECTED]] > Sent: 16 October 2002 08:19 > To: [EMAIL PROTECTED] > Subject: RE: Backup Program? > > > > hi > and how do this in unix? > cio
OT as this is not Perl A nice easy option is rsync http://www.google.com/search?sourceid=navclient&q=rsync An alternative approach is find /dir/to/backup | cpio -pm /var/backup/ do a man find to see all the find options you can use - for example you can tell find to only report files modified within the last day with: find /dir/to/backup -mtime 1 | cpio -pm /var/backup/ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]