Commit 1585e1dac262f5a0351adede6d84615c9642ffba

Authored by ronan
1 parent 68274206e1
Exists in master

update find "$REP" -type f -exec md5sum -b {} \; > "$FILE"

Showing 1 changed file with 2 additions and 7 deletions

rechercheDoublons.sh View file @ 1585e1d
... ... @@ -34,11 +34,7 @@
34 34  
35 35 rm -f "$FILE"
36 36  
37   -LFILES=$(find "$REP" -type f)
38   -
39   -while read file; do
40   - md5sum -b "$file" >> "$FILE"
41   -done <<< "$LFILES"
  37 +find "$REP" -type f -exec md5sum -b {} \; > "$FILE"
42 38  
43 39 DOUBLON=0
44 40