Skip to content

Instantly share code, notes, and snippets.

@stig
Last active December 24, 2015 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stig/6859521 to your computer and use it in GitHub Desktop.
Save stig/6859521 to your computer and use it in GitHub Desktop.
A script I used to consolidate and de-duplicate lots of pictures and movies from various iPhoto libraries and random folders full of images.
#!/bin/sh
set -e
# set -x
src=$1
dst=$2
find "$src" -type f | while read file ; do
chksum=$(md5 -q "$file")
dir=$(echo $chksum | cut -b1-2)
suffix=$(echo $file | awk -F. '{print tolower($NF)}')
to=$dst/$dir/$chksum.$suffix
if ! test -f "$to" ; then
# Make sure destination dir exists...
mkdir -p $dst/$dir
link "$file" "$to"
fi
log="$chksum $file"
echo $log >> "$dst/log"
echo $log
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment