uhdas_01_syncraw 986 Bytes
Newer Older
1 2 3 4 5
#!/bin/csh -f
#
# bak in Amsterdam before start of jc184 uhdas trial
# 3 July 2019
#
6
# 1) rsync uhdas data from uhdas server to local machine directory atsea
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
#
# 2) ensure postprocessing directories exist
#
# If the script hasn't been run recently, there will 
# be a lot of files to sync across. The processing on the uhdas
# server updates plenty of things in routine processing every few minutes.
# If the script is then immediately run again, there will be a few files
# that are updated every ping.
#
# List of cruise segments to be processed is found in
# ~/cruise/data/vmadcp/cruise_segments

set rdir = ~/mounts/uhdas_data
set ldir = ~/cruise/data/vmadcp

mkdir -p ${ldir}/atsea
mkdir -p ${ldir}/postprocessing

foreach i (`cat ~/cruise/data/vmadcp/cruise_segments`)
echo syncing ${i} to ${ldir}
rsync -auv ${rdir}/${i} ${ldir}/atsea/

mkdir -p ${ldir}/postprocessing/${i}/proc_editing
mkdir -p ${ldir}/postprocessing/${i}/proc_archive
end

echo end of syncing ${i} to ${ldir}