Skip to content

Instantly share code, notes, and snippets.

@phuesler
Last active May 2, 2024 02:48
Show Gist options
  • Star 17 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save phuesler/7501710 to your computer and use it in GitHub Desktop.
Save phuesler/7501710 to your computer and use it in GitHub Desktop.
Simple tcp server using netcat
#!/bin/bash
# Simple tcp server using netcat
# - depending on the netcat version either use nc -l 5555 or nc -l -p 5555
# - verify with `telnet locahhost 5555`
# - quit the telnet with `ctrl-]` and then type quit
# - the while loop is there so reopen the port after a client has disconnected
# - supports only one client at a time
PORT=5555;
while :; do nc -l -p $PORT | tee output.log; sleep 1; done
@richdrich
Copy link

On OSX this is while :; do nc -l localhost $PORT | tee output.log; sleep 1; done (or use brew for conventional unix syntax)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment