#! /bin/sh # # Inform the browser of the file format # echo Content-type: text/plain echo # # Use the arguments in the next process # echo echo "Laat alle argumenten zien:" echo $QUERY_STRING | awk 'BEGIN {FS="&"} {for(i=1;i<=NF;i++)print $i}' # # For completeness, show stdin # echo echo Dit komt uit een formulier via POST-method: cat -