mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-16 06:18:47 +02:00
14 lines
211 B
Bash
14 lines
211 B
Bash
#!/bin/sh
|
|
# Sunrise shell script
|
|
#
|
|
# This file is part of REMIND.
|
|
# Copyright (C) 1992-2026 by Dianne Skoll
|
|
|
|
echo Content-type: text/html
|
|
echo
|
|
echo "<HTML>"
|
|
$REMIND -arqh $DIR/sunrise.rem
|
|
echo "</HTML>"
|
|
|
|
exit 0
|