source: trunk/DataCheck/BackupRawToWue.sh@ 12563

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