Ensure spaces are handled correctly.

This commit is contained in:
Hyperling 2025-04-13 11:27:57 -07:00
parent 38aceb3220
commit 7959609a33

View File

@ -286,9 +286,9 @@ find "$OLD_DIR" -type f ! -name "*".$EXT | sort | while read file; do
echo "*** Removing original."
if [[ -d ~/TRASH ]]; then
mv -v $file ~/TRASH/
mv -v "$file" ~/TRASH/
else
rm -v $file
rm -v "$file"
fi
done
echo "** Done converting any mp3s."