ad34f5a438
Submitted by: Philippe Charnier <charnier@xp11.frmug.org>
13 lines
227 B
Bash
Executable File
13 lines
227 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $Id: 130.clean-msgs,v 1.1.1.1 1997/08/16 17:04:00 pst Exp $
|
|
#
|
|
# remove system messages older than 21 days
|
|
#
|
|
if [ -d /var/msgs ] ; then
|
|
echo ""
|
|
echo "Cleaning out old system announcements:"
|
|
|
|
msgs -c
|
|
fi
|