.. und vllt. noch mit einem Skript:
#!/bin/sh
# Programm Duplikate unter Linux aufspüren
# http://de.narkive.com/2010/5/4/1845050-daten-auf-linux-nas-zusammenfassen-dubletten-seagate-update.html
# Das script sucht im aktuellen Verzeichnis und seinen Unterverzeichnissen.
# Sollte das script nicht laufen, evtl. Pfadangaben hinzufügen.
# Es wird ohne Parameter aufgerufen.
fdupes -r -S . > fdupes.tmp
sed '/./{H;d};x;y/\n/\v/' fdupes.tmp | sort -g $1 | sed '1s/\v//;y/\v/\n/'
rm fdupes.tmp
Aufrufen wenn das Skript im Ordner media/VERBATIM/Musik liegt, Externe USB - Festplatte, deshalb der Aufruf anfangs mit sh:
sh dupli_fdupes.sh > dupli_fdupes.sh-Ergebnis.txt
In der Datei dupli_fdupes.sh-Ergebnis.txt, die dann im gleichen Ordner liegt, stehen die Ergebnisse, hier mal ein Ausschnitt meines Suchlaufs:
0 bytes each:
./fdupes.tmp
./dupli_fdupes.sh-Ergebnis.txt
490 bytes each:
./T/Tsunami Wazahari - Ganesh Hi-Fi/License.txt
./B/Butterfly Tea - MEDLEY BEST OF ! ! !/License.txt
2294 bytes each:
./B/Buddha Bomb/Buddha Bomb - Alien Fangs/AlbumArtSmall.jpg
./B/Buddha Bomb/Buddha Bomb - Night of the Shaman Moon/AlbumArtSmall.jpg
2457 bytes each:
./C/Chillax - Come Down/CHILLAX tracks_a/AlbumArtSmall.jpg
./C/Chillax - Come Down/CHILLAX tracks_b/AlbumArtSmall.jpg
354216 bytes each:
./R/Revolutionary dub vibrations (chapter two)/side gyr.jpg
./Dub Vibrations Chapter 2/side gyr.jpg
374909 bytes each:
./HOME - Ambient, World & Psychill Mix/HOME - Ambient, World & Psychill Mix (2009).mp3
./GAIA - Freestyle Mix (2008)/GAIA - Freestyle Mix (2008).mp3
380276 bytes each:
./R/Revolutionary dub vibrations (chapter two)/cd gyr.jpg
./Dub Vibrations Chapter 2/cd gyr.jpg
400356 bytes each:
./A/Ambient Architextures II/ambient_architextures2-cover.jpg
./Phlow Mix Ambient Architextures 2/Phlow Mix Ambient Architextures 2-cover.jpg
455711 bytes each:
./R/Revolutionary dub vibrations (chapter two)/back rasta.jpg
./Dub Vibrations Chapter 2/back rasta.jpg
570783 bytes each:
./R/Revolutionary dub vibrations (chapter two)/inlay rasta.jpg
./Dub Vibrations Chapter 2/inlay rasta.jpg
582482 bytes each:
./R/Revolutionary dub vibrations (chapter two)/front gyr.jpg
./Dub Vibrations Chapter 2/front gyr.jpg
1916451 bytes each:
./Roots-Of-DUB - Reggae/r/Razoof - Ghostbusta Dub (Solar Moon Version)_data/Razoof - Spirituality.mp3
./Roots-Of-DUB - Reggae/r/Razoof - Ghostbusta Dub (Solar Moon Version)_data/preview_razoof-spirituality-stefan-obermaier-dub-phazz-a-delic.mp3
3099941 bytes each:
./mika.fm - fresh Beats for YOU/+++ Fragma - Oops Sorry (DJs From Mars Radio Edit) - www.mika.fm +++.mp3
./mika.fm - fresh Beats for YOU/1/+++-Fragma/+++ Fragma - Oops Sorry (DJs From Mars Radio Edit) - www.mika.fm +++.mp3
3309696 bytes each:
./Musik-Down-from-T-kom-Server/Ashtech--Mahayana.mp3
./A/Ashtech/Ashtech--Mahayana.mp3
3478799 bytes each:
./Thievery Corporation/Thievery Corporation - The Sleeper Car.mp3
./Thievery Corporation/Thievery Corporation - The Sleeper Car2.mp3
4168205 bytes each:
./F/Flex Blur/Flex Blur - Brouillon (2007)/MMVII.mp3
./F/Flex Blur/Flex Blur - Verschiedene/Flex Blur - MMVII.mp3
4968637 bytes each:
./A/Chicane/Chicane - No Oridnary Morning (Original Mix) [Behind The Sun].mp3
./C/Chicane/Chicane - No Oridnary Morning (Original Mix) [Behind The Sun].mp3
5134464 bytes each:
./Musik-Down-from-T-kom-Server/Ashtech--Imaginary-World.mp3
./A/Ashtech/Ashtech--Imaginary-World.mp3
5329024 bytes each:
./Musik-Down-from-T-kom-Server/Yoshinori-Sunaharu--The-New-World-Break.mp3
./Various/Yoshinori-Sunaharu--The-New-World-Break.mp3
Wie man sieht werden nicht nur *.mp3 - Dateien gefunden, sondern auch '.jpg, *.txt.
–>OT Begin:
Aufruf an ALLE, vllt. schreibt der ein oder andere noch seine Suchmoeglichkeiten oder ein gutes Programm hinzu.
OT End<–