An open API service indexing awesome lists of open source software.

https://github.com/tbarbette/refdup

Find and delete duplicate files in a folder using regex
https://github.com/tbarbette/refdup

duplicate duplicate-detection duplicate-files files regex

Last synced: about 2 months ago
JSON representation

Find and delete duplicate files in a folder using regex

Awesome Lists containing this project

README

        

# refdup
Find and delete duplicate files in a folder using regex to select which ones should be kept or deleted

```
usage: refdup.py [-h] [--dry-run] [--delete [DELETE [DELETE ...]]]
[--keep [KEEP [KEEP ...]]]
FOLDER

Find duplicate files (using md5 hash) and delete the duplicate using regex for selection.

positional arguments:
FOLDER the folder to check for duplicates

optional arguments:
-h, --help show this help message and exit
--dry-run Do a dry run
--delete [DELETE [DELETE ...]]
List of regex to choose a file to delete
--keep [KEEP [KEEP ...]]
List of regex to choose a file to keep
```