huntnw/index.cgi

23 lines
286 B
Plaintext
Raw Normal View History

2020-03-18 23:34:29 +00:00
#!/bin/bash
echo "Content-Type: text/html"
echo
cat header.html
Q=$(echo "$QUERY_STRING" | sed -n 's/^.*q=\([^&]*\).*$/\1/p' | sed "s/%20/ /g" | sed "s/+/ /g")
if [[ $Q ]]
then
2020-06-23 15:56:00 +00:00
./huntnw $Q
2020-03-18 23:34:29 +00:00
2020-03-19 00:02:21 +00:00
[[ $(./tser $Q) ]] || echo "<div class='box'>No results :(</div>"
2020-03-18 23:34:29 +00:00
fi
2020-03-19 00:02:21 +00:00
cat footer.html