#!/bin/sh
# clean videotext pages      (c) 1999 Rolf Bleher <dk7in@qsl.net>

# remove old files from vtx spool dirs
/usr/bin/find /var/spool/vtx -type f -name *.vtx -mmin +1440 -exec rm {} \;

# remove old n-tv info pages
rm /var/spool/vtx/n-tv/4*_??.vtx

# remove old intercast files
/usr/bin/find /var/spool/vtx/IC -type f -mmin +1440 -exec rm {} \;

exit

