mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-06 13:35:41 +02:00
28 lines
804 B
Markdown
28 lines
804 B
Markdown
# jdupes
|
|
|
|
> A powerful duplicate file finder and an enhanced fork of `fdupes`.
|
|
> More information: <https://codeberg.org/jbruchon/jdupes#usage>.
|
|
|
|
- Search a single directory:
|
|
|
|
`jdupes {{path/to/directory}}`
|
|
|
|
- Search multiple directories:
|
|
|
|
`jdupes {{directory1 directory2 ...}}`
|
|
|
|
- Search all directories recursively:
|
|
|
|
`jdupes {{[-r|--recurse]}} {{path/to/directory}}`
|
|
|
|
- Search directory recursively and let user choose files to preserve:
|
|
|
|
`jdupes {{[-d|--delete]}} {{[-r|--recurse]}} {{path/to/directory}}`
|
|
|
|
- Search multiple directories and follow subdirectores under directory2, not directory1:
|
|
|
|
`jdupes {{directory1}} {{[-R|--recurse:]}} {{directory2}}`
|
|
|
|
- Search multiple directories and keep the directory order in result:
|
|
|
|
`jdupes {{[-O|--param-order]}} {{directory1 directory2 directory3 ...}}`
|