awips2/rpms/awips2.upc/Installer.ldm/patch/decoders/purge.sh
ucar-tmeyer 4f090d7a40 LDM Build RPM Updates
------------------------------
Moved the Installer.ldm to awips2.upc (previously in the nativelib repo) and combined from two separate ldm rpms to one
Updated build of LDM to 6.13.14
lookupRPM.sh - added awips2-ldm here and gave it the new path to component.spec
rpms/build/x86_64/build.sh - uncomment buildRPM awips2-ldm
completely updated the component.spec file to build with the paths we wanted
2022-09-22 12:35:17 -07:00

15 lines
225 B
Bash
Executable file

#!/bin/sh
TRUE=1
while [ $TRUE -eq 1 ]
do
COUNT=`find /tmp/sbn -mmin +10 |wc -l`
if [ $COUNT -gt 0 ]
then
find /tmp/sbn -mmin +10 | xargs rm -rf
echo "Deleted $COUNT files from /tmp/sbn."
fi
sleep 5
done