mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-17 14:59:20 +02:00
17 lines
319 B
Bash
Executable File
17 lines
319 B
Bash
Executable File
#!/bin/sh
|
|
# Sunrise shell script
|
|
#
|
|
# This file is part of REMIND.
|
|
# Copyright (C) 1992-1997 by David F. Skoll
|
|
# Copyright (C) 1999 by Roaring Penguin Software Inc.
|
|
|
|
# $Id: sunrise,v 1.2 1999-04-05 17:35:20 dfs Exp $
|
|
|
|
echo Content-type: text/html
|
|
echo
|
|
echo "<HTML>"
|
|
$REMIND -arqh $DIR/sunrise.rem
|
|
echo "</HTML>"
|
|
|
|
exit 0
|