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.
Fadd_keys.sh in branches/nemo_v3_3_beta/NEMOGCM/TOOLS/COMPILE – NEMO

source: branches/nemo_v3_3_beta/NEMOGCM/TOOLS/COMPILE/Fadd_keys.sh @ 2302

Last change on this file since 2302 was 2302, checked in by flavoni, 14 years ago

add options: add_key and del_key to makenemo script, see ticket #740

  • Property svn:executable set to *
File size: 1.6 KB
Line 
1#!/bin/bash
2######################################################
3# Author : Simona Flavoni for NEMO
4# Contact : sflod@locean-ipsl.upmc.fr
5#
6# Some functions called from makenemo_fcm
7# Fadd_keys   : add keys in cpp.fcm file 
8######################################################
9#set -x
10set -o posix
11#set -u
12#set -e
13#+
14#
15# ================
16# Fadd_keys.sh
17# ================
18#
19# --------------------------
20# Add compilation keys
21# --------------------------
22#
23# SYNOPSIS
24# ========
25#
26# ::
27#
28#  $ Fadd_keys.sh "LIST_KEYS"
29#
30#
31# DESCRIPTION
32# ===========
33#
34#
35# Add keys
36#
37#
38# EXAMPLES
39# ========
40#
41# ::
42#
43#  $ ./Fadd_keys.sh
44#
45#
46# TODO
47# ====
48#
49# option debug
50#
51#
52# EVOLUTIONS
53# ==========
54#
55# $Id: Fadd_keys.sh 2158 2010-10-20 17:30:03Z sflod $
56#
57#
58#
59#   * creation
60#
61#-
62 NEW_CONF=${x_n}
63 echo "Adding keys in : ${NEW_CONF}" 
64 for i in ${list_add_key} ; do
65   if [ "$(cat ${CONFIG_DIR}/${NEW_CONF}/cpp_${NEW_CONF}.fcm | grep -c "$i" )" -ne 0 ] ; then
66      if [ "$i" == "key_proci" || "$i" == "key_procij" ] ; then
67         sed -e "s/key_proc[ij]=.* / ${i} /"  ${CONFIG_DIR}/${NEW_CONF}/cpp_${NEW_CONF}.fcm >  ${CONFIG_DIR}/${NEW_CONF}/cpp_${NEW_CONF}.fcm.tmp
68               mv ${CONFIG_DIR}/${NEW_CONF}/cpp_${NEW_CONF}.fcm.tmp   ${CONFIG_DIR}/${NEW_CONF}/cpp_${NEW_CONF}.fcm
69      fi
70   echo "key $i already present in cpp_${NEW_CONF}.fcm" 
71   else
72   sed -e "s/$/ ${i}/"  ${CONFIG_DIR}/${NEW_CONF}/cpp_${NEW_CONF}.fcm >  ${CONFIG_DIR}/${NEW_CONF}/cpp_${NEW_CONF}.fcm.tmp
73   mv ${CONFIG_DIR}/${NEW_CONF}/cpp_${NEW_CONF}.fcm.tmp   ${CONFIG_DIR}/${NEW_CONF}/cpp_${NEW_CONF}.fcm
74   echo "added key $i in ${NEW_CONF}" 
75   fi
76 done
77 
78 unset -v list_add_key
79
Note: See TracBrowser for help on using the repository browser.