Skip to content

Instantly share code, notes, and snippets.

@joshlarsen
Created April 22, 2021 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshlarsen/a9bf72c39dcfddb7a495bfae63acd75b to your computer and use it in GitHub Desktop.
Save joshlarsen/a9bf72c39dcfddb7a495bfae63acd75b to your computer and use it in GitHub Desktop.
netcat web server one liner
while true; do echo -e "HTTP/1.1 200 OK\n\n $(date)" | nc -l localhost 4000; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment