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