Ignore:
Timestamp:
Jan 15, 2025, 1:50:20 PM (9 days ago)
Author:
jbclement
Message:

PEM:
Improvement of the Bash script tools in the deftank with an automatic error detection which ends the script with a message.
JBC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/libf/evolution/deftank/modify_startfi_var.sh

    r3210 r3579  
    33### Script to modify the value of a variable in a file "startfi.nc" ###
    44#######################################################################
     5set -e
     6trap 'echo -e "\033[31mError: an issue occurred in the script on line $LINENO! Please review the command and try again.\033[0m"' ERR
    57
     8#######################################################################
     9# Modify here the parameters for the script
     10###########################################
    611# Name of the file
    712name_file="startfi.nc"
     
    1217# New value for the variable
    1318new_var=8.
     19#######################################################################
    1420
    1521
    16 #######################################################################
    1722# Update the netCDF file
    1823ncap2 -O -s "$var_name=$new_var" \
Note: See TracChangeset for help on using the changeset viewer.