xref: /plan9-contrib/rc/bin/dircp (revision b94bb474148e9d24a82a427863d9c9eb4c20f4ae)
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