rdup is a utility inspired by rsync and the Plan9 way of doing backups. rdup itself does not backup anything; it only prints a list of the names of files that have changed since the last backup. It also handles files that are removed, allowing for correct incremental backups. Auxilary script that implement a backup strategy are included.
| Tags | Archiving backup |
|---|---|
| Licenses | GPLv3 |
| Operating Systems | Linux Unix |
| Implementation | C |
Recent releases


Release Notes: A number of memory leaks were removed.


Release Notes: Checks are done for two more possible I/O errors when reading files. Processing permissions on AIX were fixed.


Release Notes: Named pipes are now properly created by rdup-up.


Release Notes: A few bugs were fixed and the documentation received some polish.


Release Notes: A severe bug when creating directories with rdup-up was fixed.
Recent comments
25 Apr 2006 07:40
Re: How is this different from find?
> find . -type f -newer .lastbackup
what this doesn't take into account is removed files, rdup
does show files that are removed since the last run.
grtz Miek
25 Apr 2006 07:24
How is this different from find?
Hi there,
I'm curious how 'rdup' is different from the 'find' command, which can trivially print out a list of files modified since the date on some arbitrary timestamp file:
find . -type f -newer .lastbackup -print
You simply 'touch .lastbackup' whenever you successfully complete your backup. The description for rdup makes it sound like it's doing pretty much the same thing...but some of the comments on the different releases imply that it actually has some additional features. Maybe just the description needs updating?