my tree command returns
tree
tmp `-- t `-- e |-- foo.ps `-- s |-- bar.ps `-- t `-- baz.ps
outfile=$(pwd)/ps.tar;find . -type f | while read file; do tar rf $outfile -C $(dirname $file) $(basename $file) done gzip $outfile