mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-09 08:11:38 +08:00
21 lines
349 B
Bash
21 lines
349 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# This shell gets files from the netCDF ftp site for testing.
|
||
|
|
||
|
set -e
|
||
|
echo ""
|
||
|
file_list="MSGCPP_CWP_NC3.nc MSGCPP_CWP_NC4.nc"
|
||
|
echo "Getting KNMI test files $file_list"
|
||
|
|
||
|
for f1 in $file_list
|
||
|
do
|
||
|
if ! test -f $f1; then
|
||
|
wget ftp://ftp.unidata.ucar.edu/pub/netcdf/sample_data/$f1.gz
|
||
|
gunzip $f1.gz
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
echo "SUCCESS!!!"
|
||
|
|
||
|
exit 0
|