In Linux it is very easy to start a cgi program from a batch file with a certain standard input:
echo "name=john&city=abc" | mycgiprogram
Now I want to do the same in a batch file.
I learned already that in the Windows cmd.exe shell you have to write "start" to start an executable file:
start mycgiprogram
But how is it possible to transfer a certain input string as in the above linux example to the cgi program?
Thanks a lot in advance
echo "name=john&city=abc" | mycgiprogram