the-art-of-command-line
the-art-of-command-line copied to clipboard
Add mkfifo for namedpipes on obscure section
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).