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