#!/bin/bash printf "Content-Type: text/html\r\n" printf "\r\n" farenheit=$(echo $QUERY_STRING | cut -d= -f2) celsius=$(( ($farenheit - 32) * 5 / 9 )) printf " tempconv

$farenheit°F = $celsius°C

:

"