Skip to content

Instantly share code, notes, and snippets.

@DoomHammer
Created June 14, 2014 21:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DoomHammer/b1f72aa79582f4855435 to your computer and use it in GitHub Desktop.
Save DoomHammer/b1f72aa79582f4855435 to your computer and use it in GitHub Desktop.
Find every FLAC file beginning from current directory and print names of those with errors
# Find every FLAC file beginning from current directory and print names of those with errors
find -name '*.flac' | while read i; do flac -t "$i" 2>/dev/null || echo $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment