dotfiles/.local/bin/scripts/duploc

16 lines
603 B
Plaintext
Raw Normal View History

2022-10-24 20:22:45 +00:00
#!/bin/sh
# Delete files under current or given path
# which exist elsewhere as listed by locate.
# Args: [threshold (MB)] <filepaths...>
# OptDepends: synct (for checking against original filename)
2022-06-27 09:24:06 +00:00
case $1 in ([0-9]|[0-9][0-9]) threshold=$1; shift;; esac
find "$@" -size +${threshold:-50}M -type f -exec sh -c "IFS=$'\n'"'
2022-05-26 06:53:35 +00:00
filepath="{}"
target="$(synct-unarchive "$filepath" || echo "$filepath")"
highlight "$filepath"
2022-05-26 06:53:35 +00:00
for existing in $(locate -b "$target")
do test -n "$(dupcheck "$target" "$existing") &&
echo "Duplicate found at $existing"
rm -vi "$filepath" && break
2022-05-26 06:53:35 +00:00
done' \;