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