Created
April 22, 2017 01:58
-
-
Save NeuroWinter/24dfd778d7a940bf544a0455e07b6e01 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
find . -type f -name \*.flac -printf "%h\n" | | |
sort -u | | |
while read -r dirname; do | |
new="../flac/$dirname" | |
echo mkdir -p "$new" | |
echo cp "$dirname"/*.flac "$new" | |
jpgs=("$dirname"/*.jpg) | |
[[ ${#jpgs[@]} -gt 0 ]] && echo cp "$dirname"/*.jpg "$new" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment