mirror of https://github.com/ecmwf/eccodes.git
15 lines
330 B
Bash
Executable File
15 lines
330 B
Bash
Executable File
#!/usr/bin/ksh
|
|
set -e
|
|
#exit
|
|
rm -f $1.out || true
|
|
|
|
#GRIB_TOOLS_DIR=/usr/local/lib/metaps/bin
|
|
#GRIB_TOOLS_DIR=/marsdev/data/max/grib_api/tools
|
|
GRIB_TOOLS_DIR=/tmp/mac/p4/grib_api/main/tools
|
|
GRIBEX_DIR=/usr/local/lib/metaps/bin
|
|
EMOS_BIN=~emos/bin/$ARCH
|
|
|
|
$GRIB_TOOLS_DIR/grib_set -q -s editionNumber=2 $1 $1.out
|
|
|
|
rm -f $1.out || true
|