786f2816bb66b6dc21c593f861365924d0d1ecf1
   1#!/bin/sh
   2
   3printf "Status: 500 Intentional Breakage\n"
   4
   5printf "Content-Type: "
   6case "$PATH_INFO" in
   7*html*)
   8        printf "text/html"
   9        ;;
  10*text*)
  11        printf "text/plain"
  12        ;;
  13esac
  14printf "\n"
  15
  16printf "\n"
  17printf "this is the error message\n"