#!/bin/sh -f # method is POST. Read the query string from the standard input read string echo Content-type: text/html echo "" echo query string: $string echo "

" echo $string | awk -F= '{print "Hello", $2, "!"}' | sed 's/+/ /'