head	1.1;
access;
symbols
	Hobson_Rock_14Dec2009:1.1
	BEFORE_VCS_CHANGE:1.1
	Hobson_Rock_16Oct2009:1.1
	Hobson_Rock_29June2009:1.1
	mar19_2009:1.1
	mar18_2009:1.1
	feb13_2009:1.1
	feb10-2009:1.1
	feb09-2009:1.1
	dec15_2008:1.1
	dec12_2008:1.1
	ST_10_5:1.1
	ST_10_4b:1.1
	ST_10_4:1.1
	ST_10_3:1.1
	ST10_HW:1.1
	ST_10_2:1.1
	ST_10_1:1.1
	ST_10_0:1.1
	AUTONOMY_BRANCH:1.1.0.2
	AUTONOMY:1.1
	AUTONOMY-2008_07_30:1.1;
locks; strict;
comment	@# @;


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


desc
@@


1.1
log
@Copies a log directory from the vehicle to the laptop.  You must give the
directory name as a command-line argument.  This script compresses the .logs
first to speed the transfer.  It also copies the .cfgs, but not syslog.
@
text
@#! /bin/bash

mkdir $1
cd $1
rsh -l dorado1 $AUV_HOST "(cd \$AUV/logs/$1; gzip *.log; gzip *.cfg;)"
#gzip *.syslog)"
ncftpget -u dorado1 -p dorado1 $AUV_HOST . ~/auv/altex/onboard/logs/$1/*.gz
gunzip *.gz

echo
echo All Done
@
