------------------------------ 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
15 lines
225 B
Bash
Executable file
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
|
|
|