Sign in
apache
/
harmony
/
java6
/
.
/
classlib
/
modules
/
luni
/
src
/
test
/
resources
/
net.resources
/
HTTP
/
cgi-bin
/
test.pl
blob: 35398d231a6bab296ebc404e99ac6b364d5b39eb [
file
]
#!/usr/bin/perl
print
"Content-type: text/plain\n\n"
;
read
(
STDIN
,
$buffer
,
$ENV
{
'CONTENT_LENGTH'
});
print
$buffer
;
exit
0
;