binfind - Search for a byte sequence in binary files
Copyright (C) 2005 Edwin Steiner <edwin.steiner@gmx.net>

About
-----

    binfind searches binary files for a specified byte sequence.

    binfind uses the Boyer-Moore algorithm and is able to search large 
    files without using a lot of memory. (Note that the pattern, however, 
    is placed in core memory, so do not expect good performance with huge 
    patterns.)

License
-------

    binfind is free software under the GPL.


INSTALLING binfind
----------------

    The usual

	./configure
	make
	su -c 'make install'

    should work. For details see the INSTALL file.


USING binfind
-----------

    After installation type

	man binfind

    or

	binfind --help

    to view the binfind documentation.

