qt6windows7/tests/testserver/apache2/testdata/www/cgi-bin/set-cookie.cgi

10 lines
118 B
Plaintext
Raw Normal View History

2023-10-30 06:33:08 +08:00
#!/bin/sh
echo "Content-type: text/plain"
while read line; do
echo "Set-Cookie: $line"
done
echo
echo "Success"