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