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.
Fcopy_dir.sh in branches/UKMO/dev_r5518_GO6_package/NEMOGCM/TOOLS/COMPILE – NEMO

source: branches/UKMO/dev_r5518_GO6_package/NEMOGCM/TOOLS/COMPILE/Fcopy_dir.sh @ 9298

Last change on this file since 9298 was 6486, checked in by davestorkey, 8 years ago

Remove SVN keywords from UKMO/dev_r5518_GO6_package branch.

  • Property svn:executable set to *
File size: 762 bytes
RevLine 
[1972]1#!/bin/bash
2#set -x
3set -o posix
4#set -u
5#set -e
6#+
7#
8# ============
9# Fcopy_dir.sh
10# ============
11#
12# --------------------------
13# Copy a reference directory
14# --------------------------
15#
16# SYNOPSIS
17# ========
18#
19# ::
20#
21#  $ Fcopy_dir.sh
22#
23#
24# DESCRIPTION
25# ===========
26#
27#
[4990]28# When a reference configuration is set,
[2520]29# Copy NEMO sub-directories needed (OPA_SRC, TOP_SRC ...)
[1972]30#
31# EXAMPLES
32# ========
33#
34# ::
35#
[2520]36#  $ ./Fcopy_dir.sh ORCA2_LIM
[1972]37#
38#
39# TODO
40# ====
41#
42# option debug
43#
44#
45# EVOLUTIONS
46# ==========
47#
[6486]48# $Id: Fcopy_dir.sh 4990 2014-12-15 16:42:49Z timgraham $
[1972]49#
50#
51#
52#   * creation
53#
54#-
55
56declare -a ZTAB
[3294]57grep "$1 " ${CONFIG_DIR}/cfg.txt > ${CONFIG_DIR}/cfg.tmp
58read -a ZTAB < ${CONFIG_DIR}/cfg.tmp
[1972]59TAB=( ${ZTAB[@]:1} )
[3294]60\rm ${CONFIG_DIR}/cfg.tmp
[1972]61
62unset -v ZTAB
Note: See TracBrowser for help on using the repository browser.