#! /bin/bash
#
# PURPOSE: Copy logs from the dorado1 directory to ~rob/logs.
#

. .profile

cd $AUVD/logs

tar -cvf - $1 | gzip > ~/logs/$1.tgz

cd ~
echo "cpbigtar Finished."

