Skip to content

Instantly share code, notes, and snippets.

@sou
Created January 23, 2014 09:12
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save sou/8575416 to your computer and use it in GitHub Desktop.
Save sou/8575416 to your computer and use it in GitHub Desktop.
simple http server by "nc"
while true; do ( echo "HTTP/1.0 200 Ok"; echo; echo "TEST TASK" ) | nc -l $PORT; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment