head	1.1;
access;
symbols
	Hobson_Rock_14Dec2009:1.1;
locks; strict;
comment	@# @;


1.1
date	2009.10.16.18.03.43;	author rob;	state Exp;
branches;
next	;


desc
@@


1.1
log
@This a QNX-side companion script to getlogsrob.  It tars up and compresses the
specified log file and copies it over to ~rob/logs.
@
text
@#! /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."

@
