⬅︎ Back to ztar - my wrapper on tar -z
Another old "copy a directory across filesystems without creating temporary files" trick, back when not everything is under / in a single filesystem...$ tar cf - this-dir | (cd that-dir; tar xf -)
the usability of that one is questionably
Comment
Another old "copy a directory across filesystems without creating temporary files" trick, back when not everything is under / in a single filesystem...
$ tar cf - this-dir | (cd that-dir; tar xf -)
Replies
the usability of that one is questionably