Deleted Added
full compact
300.calendar (28264) 300.calendar (28320)
1#!/bin/sh
2#
1#!/bin/sh
2#
3# $Id: 300.calendar,v 1.1.1.1 1997/08/12 17:51:15 pst Exp $
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:"
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
16 calendar -a
17fi
17 calendar -a
18fi