From 25fd765c515845fe8943b5662ce13dc4564fca38 Mon Sep 17 00:00:00 2001 From: Kevin Mulvey Date: Sun, 2 Oct 2022 11:42:41 -0600 Subject: [PATCH] help text --- cmd/nsquared/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/nsquared/main.go b/cmd/nsquared/main.go index b92b658..7b1c2d8 100644 --- a/cmd/nsquared/main.go +++ b/cmd/nsquared/main.go @@ -58,7 +58,7 @@ func main() { var help bool var v bool flag.StringVar(&dir, "dir", "", "directory (abs path)") - flag.StringVar(&cacheFile, "cache-file", "cache.json", "json file to store the image hashes") + flag.StringVar(&cacheFile, "cache-file", "cache.json", "json file to store the image hashes which be different for different input dirs") flag.StringVar(&outputFile, "output-file", "delete.log", "log file to store the duplicate pairs") flag.IntVar(&threads, "threads", 1, "number of threads to use, >1 only useful when rebuilding the cache") flag.IntVar(&distanceThreshold, "distance", 10, "max distance for images to be considered the same")