Skip to content

Instantly share code, notes, and snippets.

@tallpeak
Created September 16, 2021 17:25
Show Gist options
  • Save tallpeak/10f71b54efb1eb15d3c2008b7666a0c4 to your computer and use it in GitHub Desktop.
Save tallpeak/10f71b54efb1eb15d3c2008b7666a0c4 to your computer and use it in GitHub Desktop.
// Problem: iPhone created some files that are all 0s (NUL bytes)
// Solution: chksum each file, delete those which are all 0
// eg:
// cd "/Users/aaron/Pictures/Photos Library.photoslibrary/originals"
// find . -name "*.jp*g" -exec sh -c 'cat {} | chksum ; if [ $? -eq 0 ]; then echo {}; rm {} ; fi' \;
#include <stdio.h>
#include <stdlib.h>
int main()
{
long int chksum = 0;
int c;
while ((c = getchar()) != EOF)
{
chksum += c;
}
printf("%ld\n",chksum);
return chksum || chksum>>32;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment