xref: /plan9/rc/bin/dircp (revision 2ce711d43c5e84d642d7e64a5c08ce5f40799bc1)
1#!/bin/rc
2# dircp src dest - copy a tree with tar
3switch($#*){
4case 2
5	@ {builtin cd $1 && tar cif /fd/1 .} | @ {builtin cd $2 && tar xTf /fd/0}
6case *
7	echo usage: dircp from to >[1=2]
8	exit usage
9}
10