summaryrefslogtreecommitdiffstats
path: root/tests/testserver/apache2/testdata/www/cgi-bin/set-cookie.cgi
blob: dc463f00f31e3c800324eaae5afde9c18a9f11c7 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

echo "Content-type: text/plain"
while read line; do
    echo "Set-Cookie: $line"
done

echo
echo "Success"