RosettaCodeData/Task/Hello-world-Web-server/Perl/hello-world-web-server-3.pl

7 lines
219 B
Perl
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
while (++(our $vn)) {
2014-01-17 05:32:22 +00:00
open NC, "|-", qw(nc -l -p 8080 -q 1);
print NC "HTTP/1.0 200 OK\xd\xa",
"Content-type: text/plain; charset=utf-8\xd\xa\xd\xa",
"Goodbye, World! (hello, visitor No. $vn!)\xd\xa";
2013-04-10 21:29:02 -07:00
}