::::::::::::::
get.OAFLUX.netheat.sh
::::::::::::::
#!/bin/sh
#wget ftp://ftp.whoi.edu/pub/science/oaflux/data_v3/OAFlux_TechReport_3rd_release.pdf
#wget ftp://ftp.whoi.edu/pub/science/oaflux/data_v3/readme-monthly.txt
url=ftp://ftp.whoi.edu/pub/science/oaflux/data_v3/monthly/netheat_1983-2009/
list="\
qnet_2000.nc.gz \
qnet_2001.nc.gz \
qnet_2002.nc.gz \
qnet_2003.nc.gz \
qnet_2004.nc.gz \
qnet_2005.nc.gz \
qnet_2006.nc.gz \
qnet_2007.nc.gz \
qnet_2008.nc.gz \
qnet_2009.nc.gz \
"
for f in $list; do
wget ${url}/$f
done
::::::::::::::
get.OAFLUX.lh+sh.sh
::::::::::::::
#!/bin/sh
#wget ftp://ftp.whoi.edu/pub/science/oaflux/data_v3/OAFlux_TechReport_3rd_release.pdf
#wget ftp://ftp.whoi.edu/pub/science/oaflux/data_v3/readme-monthly.txt
url=ftp://ftp.whoi.edu/pub/science/oaflux/data_v3/monthly/turbulence/
list="\
lh_oaflux_2004.nc.gz \
lh_oaflux_2005.nc.gz \
lh_oaflux_2006.nc.gz \
lh_oaflux_2007.nc.gz \
lh_oaflux_2008.nc.gz \
lh_oaflux_2009.nc.gz \
lh_oaflux_2010.nc.gz \
lh_oaflux_2011.nc.gz \
lh_oaflux_2012.nc.gz \
lh_oaflux_2013.nc.gz \
sh_oaflux_2004.nc.gz \
sh_oaflux_2005.nc.gz \
sh_oaflux_2006.nc.gz \
sh_oaflux_2007.nc.gz \
sh_oaflux_2008.nc.gz \
sh_oaflux_2009.nc.gz \
sh_oaflux_2010.nc.gz \
sh_oaflux_2011.nc.gz \
sh_oaflux_2012.nc.gz \
sh_oaflux_2013.nc.gz \
"
for f in $list; do
wget ${url}/$f
done