method=POST>
precisava ser
method=GET>
index.sh está no diretório cgi-bin:
#!/usr/bin/ksh
echo 'Content-type: text/html
<html><body>
<form action=FOO.KSH method=POST>
<input type=submit value=fgrep style=width:42px>
<input type=text name=name type=text autofocus size=60>
</input></form>
<br>'
FOO.KSH
#!/usr/bin/ksh
printf "Content-type: text/html\n\n";
echo $1
echo $QUERY_STRING
echo $(</dev/stdin)
Q : Por que o FOO.KSH fornece um arquivo vazio se eu enviar uma string "a" na forma do index.sh?
method=POST>
precisava ser
method=GET>