dotfiles/.local/bin/scripts/duploc

11 lines
619 B
Plaintext
Raw Normal View History

2022-05-26 06:53:35 +00:00
#!/bin/sh -e
# Delete files under current or given path which exist elsewhere as listed in the locate database
2022-05-19 20:24:44 +00:00
# Matches first by name, then by checksum (currently inefficiently via md5)
2022-05-26 06:53:35 +00:00
find "$@" -size +5M -type f -exec sh -c "IFS=$'\n'"'
filepath="{}"
target="$(basename "$filepath" | synct-unarchive)"
highlight "$filepath"
2022-05-26 06:53:35 +00:00
for existing in $(locate -b "$target")
do test "$(realpath "$target")" != "$(realpath "$existing")" -a -f "$existing" -a "$(md5sum "$existing" | cut -d\ -f1)" = "$(md5sum "$filepath" | cut -d\ -f1)" && echo "Found duplicate at $existing" && rm -vi "$filepath" && break
done' \;