Skip to content

Commit

Permalink
Add fdupes note
Browse files Browse the repository at this point in the history
  • Loading branch information
Yutsuten committed Jun 9, 2024
1 parent b409e32 commit 8381a91
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions notes/tool/linux/package/fdupes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
title: Fdupes
man: fdupes
---

## Usage

Finds duplicate files in a given set of directories.

```shell
fdupes OPTIONS DIRS
```

| Option | Description |
| --- | --- |
| `-d` `--delete` | Prompt user for files to preserve, deleting all others. |
| `-r` `--recurse` | For every directory given follow subdirectories encountered within. |

## Example

Search for duplicate files in the current directory:

```shell
fdupes .
```

0 comments on commit 8381a91

Please sign in to comment.