blob: 2212eba137292849df44270cb92a58aff8dc533d (
plain)
1
2
3
4
5
6
|
#!/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 | sed -f /etc/urlencode.sed)
sed "s/targeturl/"$targeturl"/g" /www/splash.html
|