awips2/deltaScripts/19.2.1/DR6562/6562_deleteCaveDataSubclassCache.sh
2022-05-05 12:34:50 -05:00

15 lines
374 B
Bash
Executable file

#!/bin/bash
# Deletes the subclass cache for all users of CAVE
# Run on all lx
# Author: tgurney
filePath=caveData/.metadata/.plugins/com.raytheon.uf.viz.core/subclassCache.txt
echo INFO: Starting to delete subclass cache for all CAVE users.
for dir in /home/*; do
if [[ -d $dir && -d $dir/caveData ]]; then
rm -vf $dir/$filePath
fi
done
echo INFO: Done.