Changeset 2042 in lmdz_wrf
- Timestamp:
- Aug 7, 2018, 4:38:54 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/get_data_snd-sfc_validation.bash
r2041 r2042 62 62 63 63 # Sounding values 64 if test ${snddiags} != 'None'; then64 if test ! ${snddiags} = 'None'; then 65 65 ofile=${ofold}/simout_sndvars_${sndid}_${expn}.nc 66 66 if test ${scratch} = 'true'; then rm ${ofile} >& /dev/null; fi … … 96 96 97 97 # cordex values 98 if test ${cdxdiags} != 'None' || test ${cdxnondiags} != 'None'; then98 if test ! ${cdxdiags} = 'None' || test ! ${cdxnondiags} = 'None'; then 99 99 ofile=${ofold}/simcdx_sndvars_${sndid}_${expn}.nc 100 100 if test ${scratch} = 'true'; then rm ${ofile} >& /dev/null; fi … … 138 138 139 139 # out maps 140 if test ${sfcdiags} != 'None' || test ${sfcnondiags} != 'None'; then140 if test ! ${sfcdiags} = 'None' || test ! ${sfcnondiags} = 'None'; then 141 141 ofile=${ofold}/simout_sfcvars_${sfcid}_${expn}.nc 142 142 if test ${scratch} = 'true'; then rm ${ofile} >& /dev/null; fi … … 169 169 170 170 # cdx maps 171 if test ${cdxdiags} != 'None' || test ${cdxnondiags} != 'None'; then171 if test ! ${cdxdiags} = 'None' || test ! ${cdxnondiags} = 'None'; then 172 172 files=`ls -1 ${infolder}/${expn}/wrfout/wrfcdx_d${domn}*` 173 173 ofile=${ofold}/simcdx_sfcvars_${sfcid}_${expn}.nc
Note: See TracChangeset
for help on using the changeset viewer.