mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-17 14:59:20 +02:00
20 lines
421 B
Bash
Executable File
20 lines
421 B
Bash
Executable File
#!/bin/sh
|
|
# Hebrew PostScript calendar shell script
|
|
#
|
|
# This file is part of REMIND.
|
|
# Copyright (C) 1992-1997 by David F. Skoll
|
|
|
|
# $Id: hebps,v 1.2 1997-01-19 03:59:56 dfs Exp $
|
|
|
|
# Figure out the month: If day <= 20, use this month; otherwise, use
|
|
# next month.
|
|
echo "Content-type: application/postscript"
|
|
echo ""
|
|
|
|
$REMIND - <<EOR
|
|
BANNER %
|
|
REM 20 ++40 RUN $REMIND -p $DIR/hebdate.rem %m %y | $REM2PS -e -c3
|
|
EOR
|
|
|
|
exit 0
|