• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

AUTHORSH A D15-Apr-200132 21

COPYINGH A D15-Apr-200117.6 KiB341281

ChangeLogH A D17-Apr-20010

INSTALLH A D17-Apr-20017.6 KiB183143

Makefile.amH A D17-Apr-2001112 95

Makefile.inH A D24-Apr-200111.1 KiB407317

NEWSH A D24-Apr-2001151 64

READMEH A D24-Apr-20011.3 KiB5031

aclocal.m4H A D24-Apr-20014.3 KiB128113

config.h.inH A D17-Apr-20011.1 KiB4831

configureH A D24-Apr-200166.2 KiB2,1521,739

configure.inH A D24-Apr-2001934 3124

install-shH A D17-Apr-20015.5 KiB252153

missingH A D17-Apr-20016.1 KiB191154

mkinstalldirsH A D17-Apr-2001722 4123

ncat.1.inH A D24-Apr-20012.4 KiB108106

ncat.cH A D24-Apr-20019.4 KiB502413

ncat.specH A D24-Apr-2001634 3427

ncat.spec.inH A D17-Apr-2001643 3427

stamp-h.inH A D24-Apr-200110 21

README

1Ncat v1.0.1
2-----------
3
4Ncat is covered by the GNU GPL. See the file "COPYING" for details.
5
6Ncat was written to make piping data between hosts easy. There is
7another featureful tool called "netcat" but it is bidirectional
8(unlike cat) and doesn't work well in a pipe.
9
10An example:
11
12Start tar'ing up a directory. Ncat will wait for a connection on port
131111 before sending the data:
14
15hostA# tar cz largedir | ncat -o :1111
16
17To save the data on hostB run:
18
19hostB# ncat hostA:1111 > largedir.tar.gz
20
21Ncat also supports reading and writing to regular files.
22
23To get the latest information on ncat visit:
24http://www.kyne.com.au/~mark/software.html
25
26For information on using ncat read the man page.
27
28Installing
29----------
30
31Ncat will use long options if getopt_long() exists on your system.
32Recent versions of Glibc under Linux have it, on other systems you may
33need to install GNU getopt for that functionality. ncat will work
34equally well without GNU getopt.
35
36To install:
37
38# ./configure ; make ; make install
39
40On BSD with GNU getopt installed separately you may need to use different
41CPPFLAGS/LDFLAGS:
42
43# CPPFLAGS=-I/usr/local/include README=-L/usr/local/lib ./configure
44# make
45# make install
46
47Feel free to email me if you have any problems, comments or suggestions.
48
49- Mark Pulford <mark@kyne.com.au>
50