一行bash命令http server

前端之家收集整理的这篇文章主要介绍了一行bash命令http server前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

while true; do { echo -e ‘HTTP/1.1 200 OK\r\n’; echo hello world; } | nc -l 8080; done

功能稍微健全一点的可以参考这里https://github.com/avleen/bashttpd/

原文链接:https://www.f2er.com/bash/389355.html

猜你在找的Bash相关文章