Skip to main content
1 of 4
cjc
  • 2.8k
  • 22
  • 10

rsync -v -a -r -n /oldisk/a/ /newdisk/

The -n will do a dry run, showing you what it would do without actually doing anything.

If it looks ok, run the rsync without the -n option.

This will be a copy, not a move, which isn't quite what you're doing, but is safer.

cjc
  • 2.8k
  • 22
  • 10