Here’s another one-liner which helps to migrate data from one filesystem to another in one turn:
# ( cd /mnt/src/ && tar c . ) | ( cd /mnt/dst/ && tar xv . )
Here’s another one-liner which helps to migrate data from one filesystem to another in one turn:
# ( cd /mnt/src/ && tar c . ) | ( cd /mnt/dst/ && tar xv . )