Incremental backups that look like full snapshots
The classic backup pattern: nightly rsync to a NAS, but each night looks like a complete snapshot. The trick is --link-dest. rsync compares source against the named directory; for files that haven't changed, it creates a hard link instead of copying. Result: every night's directory looks complete, but only changed files use new disk space. A month of dailies might consume only 5–10 % more than one full backup.
What's actually on disk
Hard links are multiple directory entries pointing to the same inode. From the user's perspective, both look like full files. From the storage perspective, there's exactly one copy. Delete one entry — the other still works. That's why --link-dest snapshots are so cheap: every "copy" of an unchanged file is just another inode reference.