mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-16 06:18:47 +02:00
18 lines
381 B
Bash
18 lines
381 B
Bash
#!/bin/sh
|
|
# Hebrew PostScript calendar shell script
|
|
#
|
|
# This file is part of REMIND.
|
|
# Copyright (C) 1992-2026 by Dianne Skoll
|
|
|
|
# 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 -iHTML=0 -p $DIR/hebdate.rem %m %y | $REM2PS -e -c3 -l
|
|
EOR
|
|
|
|
exit 0
|