#!/bin/sh
#
# Remove old `lock' files.
#

DIR=/usr/spool/fidonet

find $DIR -name lock -mtime +1 -print -exec rm \{\} \;
