文件操作 - hello-serv.awk
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/doc/gawk/examples/network/hello-serv.awk
编辑文件内容
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) }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件