awips2/deltaScripts/13.6.1/updateSkewtProcedures.sh
Ben Steffensmeier b7b18e02bf Issue #2258 Convert profiler sounding to var height with hodo.
Change-Id: I7b8c704ebc847169c2d09bb0bea13d0b60a9cff6

Former-commit-id: 32a0b19a38 [formerly 2aab48d1032c0b6fd14645437836ad5ca13cb415]
Former-commit-id: 0c2f894b82
2013-08-15 16:15:15 -05:00

24 lines
523 B
Bash

#!/bin/bash
# This script will update any D2D procedures files
# which use older skewT displays to use Nsharp.
IFS=$'\n'
files=`ls /awips2/edex/data/utility/cave_static/*/*/procedures/*.xml`
if [ $? -ne 0 ]; then
echo "No procedures found"
exit 1
fi
MY_DIR=`dirname $0`
for f in $files; do
grep 'skewtDisplay\|d2DNSharpDisplay' $f > /dev/null
if [ $? -eq 0 ]; then
echo Updating $f
python $MY_DIR/updateSkewtDisplays.py $f
fi
done
echo "INFO: the update has completed successfully!"
exit 0