300.calendar revision 50472
1#!/bin/sh
2#
3# $FreeBSD: head/etc/periodic/daily/300.calendar 50472 1999-08-27 23:37:10Z peter $
4#
5# `calendar -a' needs to die. Why? Because it's a bad idea, particular
6# with networked home directories, but also in general.  If you want the
7# output of `calendar' mailed to you, set up a cron job to do it,
8# or run it from your ~/.profile or ~/.login.
9#
10
11exit 0		# do not run by default
12
13if [ -f /usr/bin/calendar ] ; then
14    echo ""
15    echo "Running calendar:"
16
17    calendar -a
18fi
19