<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.christophchamp.com/index.php?action=history&amp;feed=atom&amp;title=Fdupes</id>
		<title>Fdupes - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.christophchamp.com/index.php?action=history&amp;feed=atom&amp;title=Fdupes"/>
		<link rel="alternate" type="text/html" href="http://wiki.christophchamp.com/index.php?title=Fdupes&amp;action=history"/>
		<updated>2026-04-30T11:49:54Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.26.2</generator>

	<entry>
		<id>http://wiki.christophchamp.com/index.php?title=Fdupes&amp;diff=3780&amp;oldid=prev</id>
		<title>Christoph: Fdupes (command) moved to Fdupes</title>
		<link rel="alternate" type="text/html" href="http://wiki.christophchamp.com/index.php?title=Fdupes&amp;diff=3780&amp;oldid=prev"/>
				<updated>2007-04-26T01:43:51Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;a href=&quot;/index.php?title=Fdupes_(command)&quot; class=&quot;mw-redirect&quot; title=&quot;Fdupes (command)&quot;&gt;Fdupes (command)&lt;/a&gt; moved to &lt;a href=&quot;/index.php?title=Fdupes&quot; title=&quot;Fdupes&quot;&gt;Fdupes&lt;/a&gt;&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;tr style='vertical-align: top;' lang='en'&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Revision as of 01:43, 26 April 2007&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan='2' style='text-align: center;' lang='en'&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Christoph</name></author>	</entry>

	<entry>
		<id>http://wiki.christophchamp.com/index.php?title=Fdupes&amp;diff=2293&amp;oldid=prev</id>
		<title>Christoph: Started article</title>
		<link rel="alternate" type="text/html" href="http://wiki.christophchamp.com/index.php?title=Fdupes&amp;diff=2293&amp;oldid=prev"/>
				<updated>2006-06-09T15:17:11Z</updated>
		
		<summary type="html">&lt;p&gt;Started article&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{lowercase|title=fdupes}}&lt;br /&gt;
&lt;br /&gt;
'''fdupes''' is a ([[:Category:Linux Command Line Tools|command line tool]]) used to find duplicate files in a given set of directories in [[linux]].&lt;br /&gt;
&lt;br /&gt;
It searches the given path for duplicate files. Such files are found by comparing file sizes and [[MD5]] signatures, followed by a byte-by-byte comparison. That is, it ignores filenames and locations; if the ''contents'' of the file are identical, it will find these files to be identical. It was written by Adrian Lopez.&lt;br /&gt;
&lt;br /&gt;
== Options ==&lt;br /&gt;
; &amp;lt;tt&amp;gt;-r --recurse&amp;lt;/tt&amp;gt; : include files residing in subdirectories&lt;br /&gt;
; &amp;lt;tt&amp;gt;-s --symlinks&amp;lt;/tt&amp;gt; : follow symlinked directories&lt;br /&gt;
; &amp;lt;tt&amp;gt;-H --hardlinks&amp;lt;/tt&amp;gt; : normally, when two or more files point to the same disk area they are treated as non-duplicates; this option will change this behaviour&lt;br /&gt;
; &amp;lt;tt&amp;gt;-n --noempty&amp;lt;/tt&amp;gt; : exclude zero-length files from consideration&lt;br /&gt;
; &amp;lt;tt&amp;gt;-f --omitfirst&amp;lt;/tt&amp;gt; : omit the first file in each set of matches&lt;br /&gt;
; &amp;lt;tt&amp;gt;-1 --sameline&amp;lt;/tt&amp;gt; : list each set of matches on a single line&lt;br /&gt;
; &amp;lt;tt&amp;gt;-S --size&amp;lt;/tt&amp;gt; : show size of duplicate files&lt;br /&gt;
; &amp;lt;tt&amp;gt;-q --quiet&amp;lt;/tt&amp;gt; : hide progress indicator&lt;br /&gt;
; &amp;lt;tt&amp;gt;-d --delete&amp;lt;/tt&amp;gt; : prompt user for files to preserve, deleting all others (see CAVEATS below)&lt;br /&gt;
; &amp;lt;tt&amp;gt;-v --version&amp;lt;/tt&amp;gt; : display fdupes version&lt;br /&gt;
; &amp;lt;tt&amp;gt;-h --help&amp;lt;/tt&amp;gt; : displays help&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
Unless &amp;lt;tt&amp;gt;-1&amp;lt;/tt&amp;gt; or &amp;lt;tt&amp;gt;--sameline&amp;lt;/tt&amp;gt; is specified, duplicate files are listed together in groups, each file displayed on a separate line. The groups are then separated from each other by blank lines.&lt;br /&gt;
&lt;br /&gt;
When &amp;lt;tt&amp;gt;-1&amp;lt;/tt&amp;gt; or &amp;lt;tt&amp;gt;--sameline&amp;lt;/tt&amp;gt; is specified, spaces and backslash characters (&amp;lt;tt&amp;gt;\&amp;lt;/tt&amp;gt;) appearing in a filename are preceded by a backslash character.&lt;br /&gt;
&lt;br /&gt;
== Caveats ==&lt;br /&gt;
If &amp;lt;tt&amp;gt;fdupes&amp;lt;/tt&amp;gt; returns with an error message such as fdupes: error invoking md5sum it means the program has been compiled to use an external program to calculate MD5 signatures (otherwise, &amp;lt;tt&amp;gt;fdupes&amp;lt;/tt&amp;gt; uses interal routines for this purpose), and an error has occurred while attempting to execute it. If this is the case, the specified program should be properly installed prior to running &amp;lt;tt&amp;gt;fdupes&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
When using &amp;lt;tt&amp;gt;-d&amp;lt;/tt&amp;gt; or &amp;lt;tt&amp;gt;--delete&amp;lt;/tt&amp;gt;, care should be taken to insure against accidental data loss.&lt;br /&gt;
&lt;br /&gt;
When used together with options &amp;lt;tt&amp;gt;-s&amp;lt;/tt&amp;gt; or &amp;lt;tt&amp;gt;--symlink&amp;lt;/tt&amp;gt;, a user could accidentally preserve a symlink while deleting the file it points to.&lt;br /&gt;
&lt;br /&gt;
Furthermore, when specifying a particular directory more than once, all files within that directory will be listed as their own duplicates, leading to data loss should a user preserve a file without its &amp;quot;duplicate&amp;quot; (the file itself!).&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Md5sum (command)|md5sum]]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://premium.caribe.net/~adrian2/fdupes.html Official website]&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux Command Line Tools]]&lt;/div&gt;</summary>
		<author><name>Christoph</name></author>	</entry>

	</feed>