#!/bin/bash

## Just run code in recipes, use it carefully
## example: use cdo to make cache file. Since cdo is quicker than ncl.
#;DIAG_NORCPM; RUNTHESECODES: echo '    no codes run here.'

if [ -f "sst_ensmean.nc" ] ;then 
    echo "sst_ensmean.nc exist, skip."
else
    cdo -s -ensmean sst_??.nc sst_ensmean.nc
fi


