diff --git a/doppelte-dateien-finder.sh b/doppelte-dateien-finder.sh new file mode 100755 index 0000000..208d7b8 --- /dev/null +++ b/doppelte-dateien-finder.sh @@ -0,0 +1 @@ +find . -type f -print0 | xargs -0 md5sum | sort | uniq -w32 -d --all-repeated=separate | cut -c35-