#!/usr/bin/env bash cd /mnt/pool/media # Remove interlacing from album art for iPods find ./downloads/deemix -iname "cover.jpg" -o -iname "cover.gif" -o -iname "cover.png" | while read file do convert "$file" -interlace none "$file" done # Copy it over cp -R ./downloads/deemix/* ./libraries/music # Clear the download cache folder rm -rf ./downloads/deemix/*