#!/bin/bash # kevin-and-kell--Builds a web page on the fly to display the latest # strip from the cartoon "Kevin and Kell" by Bill Holbrook. # month="$(date +%m)" day="$(date +%d)" year="$(date +%y)" echo "Content-type: text/html" echo "" echo "
" echo "" echo "" echo "" echo "
Bill Holbrook's Kevin & Kell
" echo "
" echo "© Bill Holbrook. Please see " echo "kevinandkell.com" echo "for more strips, books, etc." echo "
" exit 0