source: trunk/DataCheck/BackupAuxToWue.sh@ 12564

Last change on this file since 12564 was 12562, checked in by Daniela Dorner, 14 years ago
added (script to rsync auxiliary data to Wuerzburg for backup)
  • Property svn:executable set to *
File size: 466 bytes
Line 
1#!/bin/bash
2
3isdcauxdata=/data00/fact-construction/aux/
4wueauxdata=/fact/aux
5
6today=`date +%F`
7logfile=/home/isdc/`whoami`/DataCheck/log/BackupRawToWue$today.log
8
9echo `date`": start rsync of auxiliary data to Wuerzburg" >> $logfile 2>&1
10
11#rsync from ISDC to Wue DC
12if ! /usr/bin/rsync -avxH --progress $isdcauxdata operator@coma.astro.uni-wuerzburg.de:$wueauxdata #>> $logfile 2>&1
13then
14 echo `date`": problem rsyncing auxiliary data from ISDC to Wuerzburg"
15fi
16
17
Note: See TracBrowser for help on using the repository browser.