Created
September 23, 2017 18:16
-
-
Save davidhuser/713e7941e6604c14a6ef5acd921d12eb to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| #!/bin/bash | |
| find . -type f -name '*.flac' | while read fn; do | |
| echo "$fn" | |
| flac -ds --force-aiff-format --delete-input-file "$fn" | |
| done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment