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_extdir.sh in NEMO/trunk/mk – NEMO

source: NEMO/trunk/mk/Fcopy_extdir.sh @ 9598

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

Reorganisation plan for NEMO repository: changes to make compilation succeed with new structure
Juste one issue left with AGRIF_NORDIC with AGRIF preprocessing
Standardisation of routines header with version 4.0 and year 2018
Fix for some broken symlinks

  • Property svn:executable set to *
File size: 841 bytes
Line 
1#!/bin/bash
2#set -x
3set -o posix
4#set -u
5#set -e
6#+
7# ============
8# Fcopy_extdir.sh
9# ============
10# --------------------------
11# Copy a reference directory
12# --------------------------
13# SYNOPSIS
14# ========
15# ::
16#  $ Fcopy_extdir.sh
17# DESCRIPTION
18# ===========
19# When an unsupported configuration is requested,
20# Prepare sources for the NEMO sub-directories needed (OCE, TOP ...)
21# EXAMPLES
22# ========
23# ::
24#  $ ./Fcopy_extdir.sh ORCA2_LIM
25# TODO
26# ====
27# option debug
28# EVOLUTIONS
29# ==========
30# $Id: Fcopy_extdir.sh 3294 2012-01-28 16:44:18Z rblod $
31#   * creation
32#-
33grep "$1 " ${CONFIG_DIR}/uspcfg.txt > ${CONFIG_DIR}/cfg.tmp
34#
35LOCAL_REF=$(cat cfg.tmp | awk 'BEGIN {FS = "#" }{print $2}')
36TAB=$(cat cfg.tmp | awk 'BEGIN {FS = "#" }{print $3}')
37REMOTE_CTL=$(cat cfg.tmp | awk 'BEGIN {FS = "#" }{print $4}')
38#
39\rm ${CONFIG_DIR}/cfg.tmp
Note: See TracBrowser for help on using the repository browser.