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.
Changeset 11033 for NEMO/trunk/doc/tools – NEMO

Changeset 11033 for NEMO/trunk/doc/tools


Ignore:
Timestamp:
2019-05-21T22:36:30+02:00 (5 years ago)
Author:
nicolasmartin
Message:

Modify the shell code in order to run as expected on different OS (Linux or MacOS)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/trunk/doc/tools/shr_func.sh

    r11008 r11033  
    11#!/bin/sh 
    22 
    3 alias echo='/bin/echo -e' 
     3 
     4## Default options for GNU find (Linux OS) 
     5find_pre=''; find_suf='-regextype posix-extended' 
     6 
     7## Test OS to tweak the options in find command for working in extended mode everywhere 
     8[ '$( uname )' = 'Darwin' ] && { find_pre='-E'; find_suf=''; } 
    49 
    510clean() { 
    6    ## Not sure if this step is needed, guess latexmk should be able to detect a change 
    7         echo "\t¤ Clean previous build" 
     11    ## Not sure if this step is needed, guess latexmk should be able to detect a change 
     12    printf "\t¤ Clean previous build\n" 
    813 
    9         ## Delete temp files from previous build 
    10    echo "\t\t- delete all temporary files (.aux, .bbl, ...)" 
    11         find latex/$1 -regextype posix-extended                                                        \ 
    12                       -regex     ".*\.(aux|bbl|blg|dvi|fdb|fls|idx|ilg|ind|log|maf|mtc|out|pdf|toc).*" \ 
    13                       -exec      rm {} \; 
     14    ## Delete temp files from previous build 
     15    printf "\t  - delete all temporary files (.aux, .bbl, ...)\n" 
     16    find ${find_pre} latex/$1 ${find_suf}                                                                \ 
     17                         -regex ".*\.(aux|bbl|blg|dvi|fdb|fls|idx|ilg|ind|log|maf|mtc|out|pdf|toc)" \ 
     18                              -exec rm {} \; 
    1419 
    15         ## Remove minted folders 
    16    echo "\t\t- remove pygments input hash files (\"_minted\" folders)" 
    17         find latex/$1 -type d -name '_minted*' -exec rm -r {} \; 2> /dev/null 
     20    ## Remove minted folders 
     21    printf "\t  - remove pygments input hash files (\"_minted\" folders)\n" 
     22    find latex/$1 -type d -name '_minted*' -exec rm -r {} \; 2> /dev/null 
    1823 
    19         ## HTML exports 
    20    #echo '   - possible HTML export' 
    21         #find latex/$1 -type d -name 'html*'    -exec rm -r {} \; 
     24    ## HTML exports 
     25    #printf '   - possible HTML export' 
     26    #find latex/$1 -type d -name 'html*'    -exec rm -r {} \; 
    2227 
    23    echo 
     28    echo 
    2429} 
    2530 
    2631build() { 
    27         echo "\t¤ Generation of the PDF format\n" 
    28         cd latex/$1/main 
    29         latexmk $opts $1'_manual' 1> /dev/null 
    30         [ -f $1'_manual'.pdf ] && mv $1'_manual'.pdf ../../.. 
    31         cd - > /dev/null 
    32    echo 
     32    printf "\t¤ Generation of the PDF format\n" 
     33    cd latex/$1/main 
     34    latexmk $opts $1'_manual' 1> /dev/null 
     35    [ -f $1'_manual'.pdf ] && mv $1'_manual'.pdf ../../.. 
     36    cd - > /dev/null 
     37    echo 
    3338} 
Note: See TracChangeset for help on using the changeset viewer.