Forum Moderators: coopster
export QUERY_STRING="q=p&blah=whatever"
If your shell is tcsh:
setenv QUERY_STRING "q=p&blah=whatever"
The environment variable QUERY_STRING is what's generally used for GET requests.
POST is a little harder, but this method works for me in almost everything I need to test.
JK