I want to copy files from dir1
to dir2
. rsync -avz dir1 dir2/.
copies the files after compressing them and then decompresses them in dir2
. However, I don’t want to decompress the files in dir2
. I want to keep them compressed. How can I do this? I’m using a Linux machine by the way.