the-art-of-command-line icon indicating copy to clipboard operation
the-art-of-command-line copied to clipboard

Add mkfifo for namedpipes on obscure section

Open codepr opened this issue 6 years ago • 0 comments

mkfifo allows IPC and some lesser known tricks like

mkfifo /tmp/pipe && nc -l 12345 0</tmp/pipe | nc <address> <port> 1>/tmp/pipe

to setup a basic proxy (from https://en.wikipedia.org/wiki/Netcat#Proxying).

codepr avatar Oct 04 '19 09:10 codepr