Copy directory from source to destination – Ubuntu Terminal


Use rsync command for this so that if there is an error (or you need to stop copying) partway through you can easily resume later, without having to recopy everything.

$rsync -av source/directory/path /destination/directory/path

Leave a comment