.. -*- coding: utf-8; -*-.. include:: HEADER.rst============== Duplication.==============.. contents::Search for duplicate lines.=========================== http://en.wikipedia.org/wiki/Duplicate_code wiki page http://students.cis.uab.edu/tairasr/clones/literature/ Code Clones LiteratureOpen source or free licence: * http://duplo.sourceforge.net/ * http://clonedigger.sourceforge.net/ * http://www.ccfinder.net/ccfinderxos.htmlProprietary or restricted licence: * http://www.txl.ca/nicaddownload.html * http://www.harukizaemon.com/simian/index.html * http://getatomiq.com/ * http://www.harukizaemon.com/simian/index.htmlSearch for duplicate files.===========================This utilities only search for duplicate files: http://duff.sourceforge.net/ duff home page http://freedup.org/ freedup home page http://dupedit.com/ dupedit home page http://rdfind.pauldreik.se/ Rdfind home page http://code.google.com/p/softenido/wiki/FindRepe FindRepe home pagefdupes.=======:: $ sudo apt-get install fdupesSee: http://code.google.com/p/fdupes/ fdupes home page http://ru.wikipedia.org/wiki/Fdupes fdupes wiki page http://packages.debian.org/search?keywords=fdupes fdupes Debian packagefreedups.---------Freedups searches through the directories you specify. When it finds twoidentical files, it hard links them together. Now the two or more files stillexist in their respective directories, but only one copy of the data is storedon disk; both directory entries point to the same data blocks. http://www.stearns.org/freedups/ freedups home pagedupmerge.---------Dupmerge reads a list of files from standard input (eg., as produced by "find .-print") and looks for identical files. When it finds two or more identicalfiles, all but one are unlinked to reclaim the disk space and recreated as hardlinks to the remaining copy. https://sourceforge.net/projects/dupmerge/ dupmerge home page http://freecode.com/projects/dupmerge dupmerge freecode pagessdeep.-------ssdeep is a program for computing context triggered piecewise hashes (CTPH).Also called fuzzy hashes, CTPH can match inputs that have homologies. Suchinputs have sequences of identical bytes in the same order, although bytes inbetween these sequences may be different in both content and length. http://ssdeep.sourceforge.net/ ssdeep home page