Slashdot Mirror


User: Allen3

Allen3's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Tar to copy directory trees on (Useful) Stupid Unix Tricks? · · Score: 2, Interesting

    Using tar to copy a directory tree can be fun, but for true amazement you need to combine it with a remote shell to copy an entire directory tree to a different machine without any intermediate media:

    cd dir; tar cf - . | rsh remote_machine "cd dir2; tar xvpf -"