Metadata-Version: 2.4
Name: listdupes
Version: 2025.7.13.1
Summary: A tool to list duplicate files in a directory tree
Project-URL: Homepage, https://github.com/acetylen/listdupes
Project-URL: Issues, https://github.com/acetylen/listdupes/issues
Author: Emil Tylén
License-Expression: GPL-3.0-or-later
License-File: LICENSE
Keywords: cli,duplicate,listdupes,tool
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# Dupes

A tool to find duplicate files in a directory.

## Installation

    $ uv tool install listdupes


## Usage

```
usage: listdupes [-h] [-v] [-o] [-0] [-c] [--version] path

Find duplicate files in a file tree, ignoring empty files.

positional arguments:
  path              Where to look.

options:
  -h, --help        show this help message and exit
  -v, --verbose     print more file info
  -o, --dupes-only  print only names of duplicate files
  -0, --null        when -o is set, end lines with NUL instead of newline
  -c, --count       print only the number of duplicates
  --version         show program's version number and exit
```
