Former-commit-id:46a94c88cd
[formerly09f41a6b31
] [formerly56745c942e
] [formerly46a94c88cd
[formerly09f41a6b31
] [formerly56745c942e
] [formerlyc8e373c098
[formerly56745c942e
[formerly 469c2c597b80fd725f474e0d645656e4054fd69a]]]] Former-commit-id:c8e373c098
Former-commit-id:d25ceb8da7
[formerlya526600e3e
] [formerly d5d0bc708d2a84d887a8b1401a4d596af0a188e3 [formerlye1721cad00
]] Former-commit-id: e5bdfc9c23d1ad9869b9fa62e5f577d39c450737 [formerly18b4d133c7
] Former-commit-id:55708f1d55
43 lines
789 B
Bash
43 lines
789 B
Bash
#!/bin/bash
|
|
# DR 2864 - update the location of saved subset files
|
|
|
|
echo "Updating saved subset file locations"
|
|
|
|
startDir=/awips2/edex/data/utility/cave_static/user
|
|
cd $startDir
|
|
users=$(ls -1)
|
|
|
|
for i in $users
|
|
do
|
|
cd $i
|
|
if [ -e dataDelivery/subset ]
|
|
then
|
|
cd dataDelivery/subset
|
|
|
|
if [ ! -e GRID ]
|
|
then
|
|
mkdir GRID
|
|
fi
|
|
|
|
if [ ! -e POINT ]
|
|
then
|
|
mkdir POINT
|
|
fi
|
|
|
|
gridFiles=$(grep providerName *.xml | grep NOMADS | cut -d: -f1)
|
|
pointFiles=$(grep providerName *.xml | grep MADIS | cut -d: -f1)
|
|
for j in $gridFiles
|
|
do
|
|
mv $j* GRID
|
|
done
|
|
for j in $pointFiles
|
|
do
|
|
mv $j* POINT
|
|
done
|
|
fi
|
|
|
|
cd $startDir
|
|
|
|
done
|
|
|
|
echo "Update complete"
|