Slashdot Mirror


User: acambra

acambra's activity in the archive.

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

Comments · 1

  1. Re:-exec as a test on (Useful) Stupid Unix Tricks? · · Score: 1

    hmm... there is still the nice old tar:

    $ tar cf - somedir | (cd to_some_otherdir;tar xfv - )

    or even

    $ tar cf - somedir | ssh user@another.machine (cd to_some_otherdir;tar xfv - )

    use that quite a lot.