New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Flist_cfgs.sh in utils/build/mk_AGRIF_CMEMS_2020 – NEMO

source: utils/build/mk_AGRIF_CMEMS_2020/Flist_cfgs.sh @ 12489

Last change on this file since 12489 was 9651, checked in by nicolasmartin, 6 years ago

Reorganisation plan for NEMO repository: add missing modifications from previous commit

  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 665 bytes
Line 
1#!/bin/bash
2
3echo -e "\n  ¤ Reference configurations with default sub-components (can be updated by a new set)"
4cat ${MAIN_DIR}/cfgs/ref_cfgs.txt \
5| awk '{printf "%-20s", $1}{$1 = ""; printf "%s\n", $0}'
6
7echo -e "\n  ¤ Demonstrations cases (see https://github.com/sflavoni/NEMO-test-cases for more)"
8cat ${MAIN_DIR}/tests/demo_cfgs.txt \
9| awk '{printf "%-20s", $1}{$1 = ""; printf "%s\n", $0}'
10
11echo -e "\n  ¤ Full scripted remote configurations (CPP file + EXP00 inputs + MY_SRC + ...)"
12cat ${MAIN_DIR}/tests/rmt_cfgs.txt
13
14echo -e "\n  ¤ Available sub-components ('OCE' is mandatory in any set)"
15ls  ${MAIN_DIR}/src | awk -F/ '{ print $NF }' | column
16
17echo
Note: See TracBrowser for help on using the repository browser.