DskDitto:超快速、并行重复文件检测工具
DskDitto: Ultra-fast, parallel duplicate-file detector

原始链接: https://github.com/jdefrancesco/dskDitto

**dskDitto** 是一款专为高效与安全而设计的高性能并行重复文件检测工具。它使用 Go 语言编写,配备了基于 Bubble Tea 的直观终端界面(TUI),并提供可选的、基于 Raylib 的图形界面(GUI)以便于可视化管理。 **主要特性:** * **快速且灵活:** 利用并行处理及 SHA-256(默认)或 BLAKE3 哈希算法,能够即时扫描大型文件系统。 * **安全管理:** 提供稳健的重复文件删除功能,并支持通过创建符号链接(symlink)来替代重复文件,从而在不丢失数据的前提下节省空间。包含确认提示,以防止误删。 * **高级发现:** 支持针对近似重复文件的“模糊”匹配、仅限文件名的浅层匹配,以及针对单个文件的定向搜索。 * **精准控制:** 用户可按大小、目录深度、隐藏文件或文件系统边界过滤扫描结果,并可将结果导出为 CSV、JSON 或文本格式,以便进行报表分析和自动化处理。 * **智能处理:** 能够识别并管理 Unix 硬链接以避免误报,并支持通过配置深度和并发数来处理虚拟文件系统。 dskDitto 专为高级用户和开发者打造,可通过 `go install` 轻松安装,并提供丰富的命令行参数以适配各种自定义工作流,使其成为清理各类环境下存储空间的通用工具。

```Hacker News 最新 | 过往 | 评论 | 提问 | 展示 | 招聘 | 提交 登录 DskDitto:超快、并行的重复文件检测器 (github.com/jdefrancesco) 7 分,ingve 发布于 2 小时前 | 隐藏 | 过往 | 收藏 | 1 条评论 jauntywundrkind 3 分钟前 [–] 依我看 fclones 才是目前最强的, https://github.com/pkolaczk/fclones#benchmarks 这里确实有一些不错的界面,挺好的。使用 fclones 时,我习惯先生成一个候选文件列表,然后进行简单的审查,以确保一切都准确无误、符合预期。它非常适合将中间文件作为核心模式,这很 Unix,也很方便。但我花了一点时间才最终选定它,而且感觉它开箱即用的管理选项并不多。看起来这里(DskDitto)确实在尝试做得对用户更友好。 回复 考虑申请 YC 2026 年秋季批次!申请截止日期为 7 月 27 日。 指南 | 常见问题 | 列表 | API | 安全 | 法律 | 申请 YC | 联系 搜索:```
相关文章

原文

Go Reference Go Report Card License

dskDitto gnome logo

dskDitto The ultra-fast, parallel duplicate-file detector with interactive menus that make clearing unnecessary duplicates hassle free!

  • Blazingly fast duplicate scanning — Parallel processing finds duplicates across large disks instantly.
  • Interactive TUI by default — Browse, compare, and manage duplicates with an intuitive terminal interface powered by Bubble Tea.
  • Optional GUI — Use the experimental Raylib GUI for a graphical alternative to the TUI.
  • Safe deletion & symlink conversion — Remove duplicates or replace them with symlinks, with confirmation dialogs to prevent accidents.
  • Smart single-file search — Hash a specific file and instantly find all its duplicates across your filesystem.
  • Flexible hashing — Choose between SHA-256 (default) or BLAKE3 for content verification.
  • Fine-grained filtering — Skip files by size, depth, hidden files, symlinks, virtual filesystems, and filesystem boundaries.
  • Export results — Save findings to CSV, JSON, or plain text for reporting or automation.
  • Unix hard-link aware — Treats hard-linked files intelligently to avoid false duplicates.

Install straight from source using Go 1.22+:

go install github.com/jdefrancesco/dskDitto/cmd/dskDitto@latest

This drops the CLI/TUI binary at $(go env GOPATH)/bin/dskDitto (or ~/go/bin by default). The default install does not build the optional Raylib GUI.

To install a GUI-capable binary, make sure Raylib and CGo are available, then build with the gui tag:

go install -tags gui github.com/jdefrancesco/dskDitto/cmd/dskDitto@latest
dskDitto [options] PATH ...

Common flags:

Flag Description
--version Print the current version and exit
--no-banner Skip the startup banner
--gui Review results in the experimental Raylib GUI instead of the default TUI; requires a GUI build
--profile <file> Write a CPU profile to the given file
--time-only Exit immediately after the scan, printing only the elapsed time
--min-size <bytes> Ignore files smaller than the provided size
--max-size <bytes> Skip files larger than the provided size (default 4 GiB; use 0 for no limit)
--all-sizes Scan files of any size; clearer equivalent to --max-size 0
--hidden Include dot files and dot-directories
--exclude <path> Exclude a path from scanning (repeatable; excludes descendants)
--no-symlinks Skip symbolic links
--empty Include zero-byte files
--include-vfs Include virtual filesystem directories such as /proc or /dev
--one-file-system Do not descend into directories on a different filesystem device; --xdev is a short alias
--dir-concurrency <int> Limit concurrent directory reads; values <= 0 use automatic tuning
--no-cache On supported platforms, ask the OS not to populate the filesystem cache while hashing
--current Restrict the scan to only the specified paths (no recursion)
--depth <levels> Limit recursion to <levels> directories below the starting paths
--dups <count> Only show groups that contain at least <count> files
--text, --bullet Render duplicates without launching the TUI
--remove <keep> Operate on duplicates, keeping the first <keep> entries per group
--link With --remove, convert extra duplicates to symlinks instead of deleting them
--file <path> Only report duplicates of the given file; with --name-only, match by that file's exact name
--name-only Shallow mode: group files by exact file name, ignoring content and size
--file-shallow <path> Shallow mode: only report files with the same exact name as <path>
--fuzzy Content-based near-duplicate mode (file similarity, not filename similarity)
--fuzzy-threshold <pct> Minimum similarity percentage in fuzzy mode (default 75)
--fuzzy-same-ext In fuzzy mode, only compare files that share the same extension
--hash <algo> Select hash algorithm: sha256 (default) or blake3
--csv-out <file> Write duplicate groups to CSV
--json-out <file> Write duplicate groups to JSON
--fs-detect <path> Print the filesystem type that contains <path>
--color-safe Use a high-compatibility TUI theme that avoids custom colors (best for problematic terminal themes)
--no-confirm Skip interactive confirmation codes for TUI/GUI delete and link actions

Press Ctrl+C at any time to abort a scan. When duplicates are removed or converted through the TUI or GUI, a confirmation dialog prevents accidental mass changes unless --no-confirm is set.

Duplicate removal and symlink conversion

dskDitto never deletes or rewrites anything unless you explicitly ask it to with --remove.

  • Dry / interactive modes: by default (or with --text / --bullet) the tool only reports duplicates.
  • Delete extras: use --remove <keep> to delete all but <keep> files in each duplicate group.
  • Convert extras to symlinks: combine --remove <keep> --link to replace extra duplicates with symlinks pointing at one kept file per group.

In the TUI you can also convert the currently marked files into symlinks: mark the duplicates you want to replace, then press L and enter the confirmation code. Each group’s symlinks will point at one unmarked file in that group. Power users can pass --no-confirm to skip the confirmation code in the TUI and GUI.

On Unix-like systems, multiple hard links to the same underlying file are treated as a single entry during scanning: dskDitto hashes the content once and does not report those hard-link paths as separate space-wasting duplicates.

When using --link, the on-disk layout after the operation looks like this for a group of 3 identical files and --remove 1 --link:

/path/to/keep/file.txt      # original file kept
/path/to/dup/file-copy.txt  -> /path/to/keep/file.txt  (symlink)
/another/location/file.txt  -> /path/to/keep/file.txt  (symlink)

In the TUI, files that are symlinks are annotated with a [symlink] suffix so you can see which entries were converted.

Single-file duplicate search

Use --file /path/to/original.ext to hash a specific file first, then scan the provided directories for other files with identical content. If no duplicates are found in those directories, dskDitto exits cleanly; otherwise, all reporting/removal/export modes are limited to that single duplicate group (with the original file listed first).

Shallow filename duplicate search

Use --name-only to group files by exact final filename without hashing file contents. For example, dir1/text1 and dir2/text1 are considered duplicates even when their contents differ. Combine --name-only --file /path/to/text1, or use --file-shallow /path/to/text1, to limit shallow results to one exact filename. When the shallow target is a dotfile, dskDitto automatically includes hidden files and directories for that scan.

Restore backups are not supported for shallow filename matches because same-name files may contain different data. If --backup is combined with --name-only or --file-shallow, dskDitto prints a warning and exits before scanning or changing files.

Fuzzy content matching (near duplicates)

Use --fuzzy to find files with similar content even when they are not byte-for-byte identical. This mode compares file content signatures only; it does not use filename similarity.

By default, fuzzy mode returns groups at >=75% similarity:

dskDitto --fuzzy ~/Downloads

Tune the similarity cutoff when needed:

dskDitto --fuzzy --fuzzy-threshold 90 ~/Downloads

Restrict fuzzy comparisons to matching extensions:

dskDitto --fuzzy --fuzzy-same-ext ~/Downloads

--fuzzy results are review-only near matches. Automatic mutation flows (--remove / --link) are disabled in fuzzy mode.

By default, dskDitto uses SHA-256 for content hashing:

  • SHA-256 (--hash sha256): conservative, widely-supported choice with strong collision guarantees.
  • BLAKE3 (--hash blake3): Under many circumstances this is significantly faster on modern CPUs. However, on macOS SHA256 is fine tuned and out performs BLAKE3 most of the time. Thus, we leave SHA-256 as the default for now.

Scan your home directory and interactively review duplicates:

Use the experimental Raylib windowed UI:

The default install is CLI/TUI-only. If --gui reports that GUI support was not built in, reinstall with go install -tags gui github.com/jdefrancesco/dskDitto/cmd/dskDitto@latest.

Exclude a directory (or file) from scanning:

dskDitto --exclude $HOME/Library/Caches $HOME

Exclude multiple paths in one scan (repeat --exclude):

dskDitto \
  --exclude $HOME/Library/Caches \
  --exclude $HOME/.cache \
  --exclude $HOME/Downloads \
  $HOME

Stay on the starting filesystem, like find -xdev or ncdu -x:

dskDitto --one-file-system /
dskDitto --xdev $HOME

List duplicates for scripting or grepping, without launching the TUI:

dskDitto --text ~/Pictures ~/Movies | grep "\.jpg$"

Find files that share the same exact filename, ignoring contents:

dskDitto --name-only --text ~/Downloads ~/Documents

Find and safely delete duplicates larger than 100 MiB, keeping one copy per group:

dskDitto --min-size 100MiB --remove 1 /mnt/big-disk

Shrink a media library by converting duplicates into symlinks instead of deleting them:

dskDitto --remove 1 --link ~/Media

Export duplicate information to CSV or JSON for offline analysis:

dskDitto --csv-out dupes.csv  ~/Photos
dskDitto --json-out dupes.json ~/Projects
  • Clean a downloads folder but keep one copy of each installer:

    dskDitto --min-size 10MiB --remove 1 ~/Downloads
  • Deduplicate a photo drive while preserving directory layout with symlinks:

    dskDitto --remove 1 --link /Volumes/photo-archive
  • Hunt for big redundant media files only:

    dskDitto --min-size 500MiB --text ~/Movies ~/TV
  • Use BLAKE3

    NOTE: On macOS, Blake3 will actually perform worse than SHA256 hence, we leave it as default for time being. Blake3's implementation may improve in the future, possibly out performing SHA256.

    dskDitto --hash blake3 --min-size 10MiB --text /mnt/big-disk
  • Feed duplicate groups into another tool via CSV:

    dskDitto --csv-out dupes.csv /data

Screenshot: interactive TUI

Bubble Tea was used for TUI

Screenshot: Raylib GUI duplicate review

GUI built with Raylib

Benchmark directory traversal on your machine before choosing a fixed concurrency value. On fast APFS SSDs, the best range is usually workload-dependent:

go build -o dskDitto ./cmd/dskDitto
for w in 16 24 32 48 64 96 128; do
  /usr/bin/time -p ./dskDitto --time-only --dir-concurrency "$w" ~
done

Use /usr/bin/time -l ./dskDitto --time-only ~ for a more detailed macOS run. --no-cache is also benchmark-only by default; test it with the same workload before keeping it in your normal command.

Build From Source (Development)

Ensure you have

  • go (1.22+)
  • gosec (install via go install github.com/securego/gosec/v2/cmd/gosec@latest)
git clone https://github.com/jdefrancesco/dskDitto
cd dskDitto
make

The resulting binary lives in bin/dskDitto. Add it to your $PATH or run it from the repo root. The default make path builds the CLI/TUI binary. To explicitly build and smoke-run the Raylib GUI path, make sure Raylib and CGo are available, then run:

make build-gui
make run-gui GUI_PATH=$HOME

Install the built binary somewhere on your path (defaults to /usr/local/bin) with:

sudo make install PREFIX=/usr/local/bin

Override PREFIX (for example make install PREFIX=$HOME/.local/bin) if you prefer a user-local install and want to skip sudo.

make debug         # Create development build
make build-gui     # Build a GUI-capable binary with -tags gui
make run-gui       # Build and launch the Raylib GUI against GUI_PATH (default ".")
make release-check # Print the tag/push/public-install release checklist
make release-install-check # Verify what go install ...@latest currently installs
make test          # go test ./...
make bench         # run benchmarks (adds -benchmem)
make bench-profile # capture cpu.prof and mem.prof into the repo root
make pprof-web     # launch go tool pprof with HTTP UI for the latest profile

See DittoDoc

  • Log level: set DSKDITTO_LOG_LEVEL to debug, info, warn, etc.
  • Default options: wrap dskDitto in a shell alias or script with your favorite defaults.
  • Profiling: supply --pprof host:port to expose Go's pprof endpoints while the tool runs.

Issues and PRs are welcome. Open an issue if you have ideas for improvements, new output modes, or performance tweaks. I only develop this in my spare time which is less and less these days. New contributors are definitely something the project needs.

This project is released under the Apache license. See LICENSE for details.

联系我们 contact @ memedata.com