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 9388 for branches/2017/dev_merge_2017/DOC/clean.sh – NEMO

Ignore:
Timestamp:
2018-03-08T17:57:24+01:00 (6 years ago)
Author:
nicolasmartin
Message:

Global reorganisation of DOC directory: implementation and configuration of syntax highlighting with 'minted' LaTeX package
New macros have been created to insert different source codes (fortran, xml, c and shell-session) in the document.
Pygments Python package is now required to compile the documentation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_merge_2017/DOC/clean.sh

    r9378 r9388  
    11#!/bin/bash 
    22 
    3 rm -f $( ls -1 NEMO_manual* | egrep -v "tex" ) 
    4 rm -rf _minted-NEMO_manual html_* 
    5 find texfiles -regextype posix-extended -regex ".*\.(aux|log)" -exec rm -f {} \; 
     3rm -f $( ls -1 tex_main/NEMO_* | egrep -v "\.(bib|sty|tex)$" ) 
     4#rm -rf _minted-* 
     5#rm -rf html* 
     6find tex_* -regextype posix-extended -regex ".*\.(aux|log)$" -exec rm -f {} \; 
    67 
    78exit 0 
Note: See TracChangeset for help on using the changeset viewer.