Compare commits

..

1 Commits

Author SHA1 Message Date
ge
5c63b7ea79 fix duplicates report (#1) 2025-09-24 20:47:29 +03:00
3 changed files with 3 additions and 8 deletions

View File

@@ -1,10 +1,5 @@
# fdup
> [!CAUTION]
> Recently I've noticed wrong hashsum calculations in some cases (unknown reason for now).
>
> Different files may be falsely marked as having the same hash! Be careful and do not use the `-remove` option until issue https://github.com/gechandesu/fdup/issues/1 is resolved.
The dumb tool for finding duplicate files by their hash sums.
Compile it with `-prod` for better performance:

2
fdup.v
View File

@@ -35,7 +35,7 @@ fn main() {
mut app := cli.Command{
name: 'fdup'
description: 'File duplicates finder'
version: '0.2.1'
version: '0.2.0'
usage: '[DIR...]'
execute: find
defaults: struct {

4
v.mod
View File

@@ -1,7 +1,7 @@
Module {
name: 'fdup'
description: 'Find and remove duplicate files'
version: '0.2.1'
description: 'File duplicates finder'
version: '0.2.0'
license: 'GPL-3.0-or-later'
dependencies: []
}