10 lines
118 B
Plaintext
Raw Normal View History

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