mirror of https://github.com/ecmwf/eccodes.git
18 lines
519 B
Bash
Executable File
18 lines
519 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
echo "-# To copy only the SYNOP messages from a file\\n"
|
|
echo "\verbatim"
|
|
echo "> bufr_copy -w dataCategory=0 in.bufr out.bufr"
|
|
echo "\endverbatim\\n"
|
|
|
|
echo "-# To copy only the non-SYNOP messages from a file\\n"
|
|
echo "\verbatim"
|
|
echo "> bufr_copy -w dataCategory!=0 in.bufr out.bufr"
|
|
echo "\endverbatim\\n"
|
|
|
|
echo "-# Use the square brackets to insert the value of a key in the name of the output file. \\n"
|
|
echo "\verbatim"
|
|
echo ">bufr_copy in.bufr 'out_[dataCategory].bufr' "
|
|
echo "\endverbatim\\n"
|