Created
September 16, 2021 17:25
-
-
Save tallpeak/10f71b54efb1eb15d3c2008b7666a0c4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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