e3f16e7a42
to make it work with our new docker-based test server. Change-Id: I76345a2d3d768b8a571f2c85e69f6a21e9a96d7e Reviewed-by: Ryan Chu <ryan.chu@qt.io> Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
10 lines
237 B
Bash
Executable File
10 lines
237 B
Bash
Executable File
#!/bin/bash
|
|
cc=`echo "${QUERY_STRING}" | sed -e s/%20/\ /g`
|
|
echo "Status: 200"
|
|
echo "Cache-Control: $cc"
|
|
echo "Last-Modified: Sat, 31 Oct 1981 06:00:00 GMT"
|
|
echo "Content-type: text/html";
|
|
echo "X-Script: $0"
|
|
echo ""
|
|
echo "Hello World!"
|