blob: 086fa8261012bfda21c9b6809987aba03872fd3c (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
echo -en "Status: 200 OK\r\n"
echo -en "Content-Type: text/html\r\n"
echo -en "\r\n"
targeturl="$(echo "$QUERY_STRING" | tr -d '/')"
sed "s/targeturl/"$targeturl"/g" splash.html
|