awips2/deltaScripts/14.3.1/DR2701/removeLocalGroupsLocalization.sh

10 lines
260 B
Bash
Raw Permalink Normal View History

2022-05-05 12:34:50 -05:00
#!/bin/bash
echo "INFO: update started - removing collaboration local groups localization files"
find /awips2/edex/data/utility -type f -regex '.*collaboration/localGroups.xml$' -exec rm -vf {} \;
echo "INFO: the update has completed successfully!"
exit 0