mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-10 04:32:30 +02:00
13 lines
305 B
Bash
13 lines
305 B
Bash
#!/bin/sh
|
|
echo Setting environment variables:
|
|
REQUEST_METHOD=GET
|
|
QUERY_STRING="name=michael&address=home&city=heaven"
|
|
HTTP_USER_AGENT="Shell script"
|
|
HTTP_REFERER="The shell prompt"
|
|
export REQUEST_METHOD QUERY_STRING HTTP_USER_AGENT HTTP_REFERER
|
|
echo Running program..
|
|
testcgi
|
|
#end of script
|
|
|
|
|