Skip 0-sized files in the shell version
[dups.git] / dups.sh
diff --git a/dups.sh b/dups.sh
index bd282e5..5fc4f95 100755 (executable)
--- a/dups.sh
+++ b/dups.sh
@@ -1,6 +1,6 @@
 #! /bin/sh
 
-find $@ -type f -print0 \
+find $@ -type f -size +0 -print0 \
 | xargs -0 -P $(nproc) md5sum \
 | awk '
     {
This page took 0.018491 seconds and 4 git commands to generate.