Last change
on this file since 10218 was
10146,
checked in by nicolasmartin, 3 years ago
|
Reorganisation for future addition of .rst files from users wiki extraction
- Create root directories latex and rst for tidy up
- Move namelists folder to the root with the aim to gather later all namelist groups here (OCE, ICE & TOP)
Also building scripts have been modified so that figures is now expected to be present at the root
- Create bin directory with namelist utilities (check and update)
- Under rst, add 4 dummy files that would gather the whole documentation existing currently in users wiki
- model_interfacing.rst
- reference_configurations.rst
- setup_configuration.rst
- test_cases.rst
|
-
Property svn:executable set to
*
|
File size:
479 bytes
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | |
---|
3 | if [[ $* != '' ]]; then |
---|
4 | |
---|
5 | if [[ $1 = 'all' ]]; then |
---|
6 | models='NEMO SI3 TOP' |
---|
7 | else |
---|
8 | models=$1 |
---|
9 | fi |
---|
10 | |
---|
11 | else |
---|
12 | models='NEMO' |
---|
13 | fi |
---|
14 | |
---|
15 | for model in $models; do |
---|
16 | [[ $model =~ ^(SI3|TOP)$ ]] && continue |
---|
17 | echo 'Namelists not included in the '$model' manual:' |
---|
18 | |
---|
19 | for nlst in $( ls namelists ); do |
---|
20 | |
---|
21 | if [[ ! $( grep "\\nlst{$nlst}" ./latex/$model/subfiles/*.tex ) ]]; then |
---|
22 | printf "$nlst " |
---|
23 | fi |
---|
24 | |
---|
25 | done |
---|
26 | |
---|
27 | echo |
---|
28 | |
---|
29 | done |
---|
30 | |
---|
31 | exit 0 |
---|
Note: See
TracBrowser
for help on using the repository browser.