home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- #
- # Simple CGI-script to send date in FunScroll data format...
- #
-
- DATE=/bin/date
-
- echo Content-type: text/plain
- echo
-
- if [ -x $DATE ]; then
- echo "<down><50>`$DATE`<down>"
- else
- echo "<nervous><100>Cannot find date command on this system."
- fi
-
-
-