#!/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.'

test -f "sst_ens.nc" && (echo "sst_ens.nc exist, skip.";exit 0) || true
cdo -s -O -ensmean sst_??.nc sst_ens.nc


