DEBSOURCES
Skip Quicknav
sources / qtbase-opensource-src-gles / 5.15.17%2Bdfsg-1 / tests / testserver / apache2 / testdata / www / cgi-bin / set-cookie.cgi
123456789
#!/bin/sh echo "Content-type: text/plain" while read line; do echo "Set-Cookie: $line" done echo echo "Success"