Skip to content

Instantly share code, notes, and snippets.

@peko
Created January 23, 2020 21:26
Show Gist options
  • Save peko/081b51dc4722f0bc6977c23bc3d5d823 to your computer and use it in GitHub Desktop.
Save peko/081b51dc4722f0bc6977c23bc3d5d823 to your computer and use it in GitHub Desktop.
Remove bad jpegs
#!/bin/bash
find -iname "*.jpg" -print0 | xargs -P 10 -0 jpeginfo -c | grep -e WARNING -e ERROR | cut -d ' ' -f 1 | xargs rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment