Deduper - Install Instructions
==============================

You need a Perl distribution with the following modules for Deduper to work:

* Digest::SHA
* File::Find
* Getopt::Std

Most Linux distributions already ship with a Perl distribution and no installation will be needed.

INSTALLING IN LINUX DISTRIBUTIONS AND COMMON BSD SYSTEMS

Copy the file deduper.pl to a folder listed in your $PATH. In a Linux distribution, /usr/bin is recommended. In OpenBSD, /usr/local/bin is recommended. Then set the permissions of the file.

# cp deduper /usr/bin/deduper
# chown root:root /usr/bin/deduper
# chmod 555 /usr/bin/deduper

Copy the man page to the folder in which man pages are stored. In a Linux distribution or in an OpenBSD system, this location is probably /usr/share/man/man1.

# cp deduper.1 /usr/share/man/man1/deduper.1
# chown root:root /usr/share/man/man1/deduper.1
# chmod 444 /usr/share/man/man1/deduper.1




