A-M baby
This commit is contained in:
parent
764da6cbbb
commit
db842d013d
19005 changed files with 197040 additions and 7 deletions
15
Task/Hello-world-Web-server/AWK/hello-world-web-server.awk
Normal file
15
Task/Hello-world-Web-server/AWK/hello-world-web-server.awk
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/gawk -f
|
||||
BEGIN {
|
||||
RS = ORS = "\r\n"
|
||||
HttpService = "/inet/tcp/8080/0/0"
|
||||
Hello = "<HTML><HEAD>" \
|
||||
"<TITLE>A Famous Greeting</TITLE></HEAD>" \
|
||||
"<BODY><H1>Hello, world</H1></BODY></HTML>"
|
||||
Len = length(Hello) + length(ORS)
|
||||
print "HTTP/1.0 200 OK" |& HttpService
|
||||
print "Content-Length: " Len ORS |& HttpService
|
||||
print Hello |& HttpService
|
||||
while ((HttpService |& getline) > 0)
|
||||
continue;
|
||||
close(HttpService)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue