You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for yaml in ${yaml_list[@]}; do
==>
for yaml in "${yaml_list[@]}"; do
ls ./ioda*nc
if (( $? == 0 )); then
=>
if ls ./ioda*nc; then
cd ${DATA}
=>
cd "${DATA}" || exit 1
ln -snf ${FIXrrfs}/physics/${PHYSICS_SUITE}/* .
=>
ln -snf "${FIXrrfs}/physics/${PHYSICS_SUITE}"/* .
fhr_all=(${fhr_string})
=>
read -ra fhr_all <<< "${fhr_string}"
if (( $i >= ${num_fhrs} )); then
=>
if (( i >= num_fhrs )); then
nEXEC=$(ls -1 ../exec | wc -l)
=>
nEXEC=$(find ../exec/* | wc -l)