Name | Modified | Size | Downloads / Week |
---|---|---|---|
README | 2011-02-23 | 777 Bytes | |
tcpcat-1.2.0.tar.gz | 2011-02-23 | 53.4 kB | |
Totals: 2 Items | 54.2 kB | 1 |
"tcpcat" Tcpcat is a simple program that is like `cat' but it works over tcp streams to allow you to cat from one host to another. The host common way to use this program would be something like this: on host a: $ tcpcat -l 93255 | gzip -dc | tar xvf - on host b: $ tcpcat -h hosta:93255 file.tar.gz Another good use for this program is debugging network stuff. When debugging a newtork client or server you can pipe the output of tcpcat to a hex dump (I recomend xxd which comes with vim). Also it can act as a crude telnet server when invoded with --listen, --input, and --output, this mode is quite useful for network program debugging as well. This program has been tested under Linux and Solaris. See the file INSTALL for compilation and installation instructions.