vger/tests/var/gemini/cgi-bin/who.cgi
2021-01-14 13:49:46 +01:00

11 lines
190 B
Bash
Executable file

#!/bin/sh
printf "%s %s: cgi_test\r\n" "20 text/plain"
u=""
if [ -n "${QUERY_STRING}" ]; then
u="$(printf "%s" "${QUERY_STRING}" | cut -d'=' -f2)" #yeah, it's awful..
fi
echo "hello $u"