Ganze Verzeichnis-Inhalte kopieren (lokal)
(cd /DIR_1;tar cf - .)|(cd /DIR_2;tar xfv -)
Ganze Verzeichnis-Inhalte kopieren (remote/per SSH)
cd /home tar -cf - DIR_1/ | ssh 172.16.254.100 'cd /home && tar xpvf -'
Verzeichnis mit tar über eine SSH-Verbindung sichern
cd /home tar -cfzv - DIR_1/ | ssh 172.16.254.100 "cat >/tmp/DIR_1_2012-01-16.tar.gz"