是否可以在 Windows 中使用 netcat 工具制作单页 Web 服务器,就像可以在 Linux 中使用 bash 使用此命令制作的服务器一样?(基本上是shell脚本):
while true;
do { echo -e 'HTTP/1.1 200 OK\r\n'; cat index.html; } | nc -l 80;
done
提前致谢。
编辑:
我正在使用的测试 index.html 文件是这样的:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=us-ascii">
<title>Hi.</title>
</head>
<body>
<h1>Hi.</h1>
</body>
</html>