#!/bin/bash ####################################################################### ### Script to modify the value of a variable in a file "startfi.nc" ### ####################################################################### # Name of the file name_file="startfi.nc" # Name of the variable to be modified var_name="co2" # New value for the variable new_var=8. ####################################################################### # Update the netCDF file ncap2 -O -s "$var_name=$new_var" \ $name_file $name_file echo "In \"$name_file\":" echo "New $var_name = $new_var" echo "Done!"