Created
June 14, 2014 21:19
-
-
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
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
# 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