#!/bin/bash
while true
do
date +"copy RAW to DEV3 +%c"
rsync -auq [email protected]:/Users/Shared/FCTD_EPSI_DATA/Current_Cruise/ /Users/Shared/EPSI_PROCESSING/Current_Cruise/Realtime_RAW/raw
rsync -auq [email protected]:/Users/Shared/FCTD_EPSI_DATA/Current_Cruise/ /Users/Shared/EPSI_PROCESSING/Current_Cruise/Processed/RAW_full_cruise
rsync -auq [email protected]:/Users/Shared/FCTD_EPSI_DATA/Simulated_Data/Incoming_Data/ /Users/Shared/EPSI_PROCESSING/Simulated_Data/Realtime_RAW/raw
rsync -auq [email protected]:/Users/Shared/FCTD_EPSI_DATA/Simulated_Data/Incoming_Data/ /Users/Shared/EPSI_PROCESSING/Simulated_Data/Processed/RAW_full_cruise
sleep 1
done
# To make this executable: chmod u+x sync_data_dev1_to_dev3
- Run this script from DEV3
[email protected] is DEV1
/Users/Shared/FCTD_EPSI_DATA/TFO2024/ is where all raw data is streaming in from the fish
- The other two directories are where you copy the raw data for realtime processing (to view timeseries) and full processing (to compute turbulence and plot sections)