So I don't forget it.
netcat
, fifo
s, and tee
:
$ mkfifo backpipe
$ sudo nc -l 80 0<backpipe | tee -a inflow | nc localhost 8080| tee -a outflow 1>backpipe
inflow
and outflow
to see what the actual contents were of the transaction.
# — 30 July, 2008