300.calendar revision 28320
1#!/bin/sh
2#
3# $Id: 300.calendar,v 1.1.1.1 1997/08/16 17:04:00 pst Exp $
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