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.
chk_nlsts.sh in NEMO/trunk/doc/namelists – NEMO

source: NEMO/trunk/doc/namelists/chk_nlsts.sh @ 10125

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

Update of namelist blocks for inclusion in the NEMO manual
Add simple script to check if a block is missing in the documentation

  • Property svn:executable set to *
File size: 182 bytes
Line 
1#!/bin/sh
2
3echo 'Namelists not included in the manual:'
4
5for nlst in nam*; do
6   [[ ! $( grep "forfile{../namelists/$nlst}" ../tex_sub/*.tex ) ]] && printf "$nlst "
7done
8
9echo
10
11exit 0
Note: See TracBrowser for help on using the repository browser.