The command looks about like this rsync --link-dest=/path/to/
yesterday server:/Users /path/to/today
So thats making fake these fake hard links. And now I want to write
just the files that have a single hard link to tape. Is there any
way to do that?
ls -l will show the number of links on a file (it's the column just
after the permissions).
Also, the "find" command has a flag called "-links" that will find
files that only have the given number of links. So, if you search
for files with only 1 link, that should be the files that have
changed, and aren't just links to earlier files. For example: