<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">My old Intel NUC is still in a state of non-workingness, but this week I’ve been doing a bit of clean-up on my external drives which have multiplied over the years. I’ve been using jdupes for hunting down duplicate copies of my photos library, music library, reports etc. and it works pretty well. It only catches binary identical files though, so it won’t catch similar images or even identical images but with changes to the file header.<div class=""><br class=""></div><div class="">Jdupes page here: <a href="https://github.com/jbruchon/jdupes" class="">https://github.com/jbruchon/jdupes</a></div><div class=""><br class=""></div><div class="">By default jdupes prints groups of duplicate files to stdout with each file separated by a single newline and groups separated by a pair of newlines. It’s not terribly useful by itself so usually it’s necessary to pass the output to some script. I wrote a short python script to delete all duplicates in the 2nd folder passed to it which are present in the 1st folder. I’m always worried about deleting everything by accident so my python script actually just writes out a shell script which then does the deleting. </div><div class=""><br class=""></div><div class="">Script here: <a href="https://github.com/akbarnes/jdupes-helper" class="">https://github.com/akbarnes/jdupes-helper</a></div><div class=""><br class=""></div><div class="">-Art</div></body></html>