Embed Notice
HTML Code
Corresponding Notice
- Embed this notice
pistolero (p@fsebugoutzone.org)'s status on Monday, 30-Sep-2024 18:23:53 JSTpistolero @Zergling_man @MisterRogersSnapped I occasionally do an md5sum of the files in the meme directory and then check for dups, but usually I do not save files twice.
I should probably shove it into a script but it's something like `find -type f -print0 | xargs -0 -P8 -n100 md5sum | awk '{a[$1] = a[$1] "\t" $2;c[$1]++}END{for(i in c){if(c[i] > 1)print i, c[i], a[i]}}'.