Skip to content
Christopher P. Brown edited this page Jan 8, 2022 · 2 revisions

netcat

Look at this file server

while true; do printf 'HTTP/1.1 200 OK\n\n\%s' "$(pandoc index.md)" | nc -l 8888; done

file transfer

catcher: nc -l 4444 > newfile thrower: nc <address> 4444 < myfile

resources

Clone this wiki locally