# README
About Equalfile
Equalfile is a pure Go package for comparing files.
Install
Recipe with Modules (since Go 1.11)
Clone outside of GOPATH:
git clone https://github.com/udhos/equalfile
cd equalfile
Run tests:
go test
Install example application 'equal':
go install ./equal
Run example application:
~/go/bin/equal
Recipe without Modules (before Go 1.11)
Set up GOPATH as usual:
export GOPATH=$HOME/go
mkdir $GOPATH
Get equalfile package:
go get github.com/udhos/equalfile
Install example application 'equal':
go install github.com/udhos/equalfile/equal
Run example application:
$GOPATH/bin/equal
Usage
Add the import path:
import "github.com/udhos/equalfile"
See: equalfile GoDoc API
Example Application
See example application: equal source code
# Packages
No description provided by the author
# Functions
New creates Cmp for single comparison mode.
New creates Cmp for multiple comparison mode.