Skip to content

Instantly share code, notes, and snippets.

@heapwolf
Created December 27, 2021 15:08
Show Gist options
  • Save heapwolf/cfbadac7689dd85172978568dec483dc to your computer and use it in GitHub Desktop.
Save heapwolf/cfbadac7689dd85172978568dec483dc to your computer and use it in GitHub Desktop.
The quick and simple http server

Get top from http://localhost:8081 (on linux use top -n 1).

while :; do nc -l 8081 <<EOF
HTTP/1.1 200 OK
Content-Type: text/html

<pre>`top -l 1`</pre>
EOF
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment