300.calendar revision 28320
128263Spst#!/bin/sh
228263Spst#
328320Spst# $Id: 300.calendar,v 1.1.1.1 1997/08/16 17:04:00 pst Exp $
428263Spst#
528263Spst# `calendar -a' needs to die. Why? Because it's a bad idea, particular
628263Spst# with networked home directories, but also in general.  If you want the
728263Spst# output of `calendar' mailed to you, set up a cron job to do it,
828263Spst# or run it from your ~/.profile or ~/.login.
928263Spst#
1028263Spst
1128263Spstexit 0		# do not run by default
1228263Spst
1328263Spstif [ -f /usr/bin/calendar ] ; then
1428263Spst    echo ""
1528263Spst    echo "Running calendar:"
1628320Spst
1728263Spst    calendar -a
1828263Spstfi
19