---
title: How to Remove Duplicate Files and Images with Duff in Linux
date: 2013-04-26T20:31:23+00:00
modified: 2013-04-26T20:31:23+00:00
permalink: https://kaspars.net/blog/how-to-remove-duplicate-files-and-images-with-duff-in-linux
post_type: post
author:
  name: Kaspars
  avatar: https://reverse.kaspars.net/gravatar/avatar/92bfcd3a8c3a21a033a6484d32c25a40b113ec6891f674336081513d5c98ef76?s=96&d=mm&r=g
category:
  - Linux
---

# How to Remove Duplicate Files and Images with Duff in Linux

[Duff](http://duff.sourceforge.net/) is an awesome tool to find duplicate files, photos and images.

List all duplicates:

```
duff -re .
```

Delete those duplicates

```
duff -re . | xargs rm -r
```