Compare

rsync vs scp

The difference between simple file copying and efficient sync-oriented transfer.

SCP is straightforward for copying files over SSH. rsync is better when you care about repeated synchronization, partial updates, exclusions, or transfer efficiency.

Use rsync When

You are syncing directories repeatedly and want delta transfers or exclusion rules.

You want a more efficient deployment or backup workflow.

Use scp When

You just need a quick one-time file copy over SSH.

You want the simplest familiar transfer command without sync logic.

Rule of Thumb

scp copies once. rsync synchronizes efficiently.

Want the short version? Browse the compact sheet views and save the commands you use most into a Cheatbook.