#!/bin/python3

# CGI-Test-Skript, das vom CGIHTTPRequestHandler gerufen wird

# Ablage unter /tmp/cgi-bin
# chmod +x cgi_test.py
#
# /bin/python3 webserver.py
# curl localhost:8080/cgi-bin/cgi_test.py

print('''Content-Type: text/plain; charset=UTF-8

Hallo''')
