Add empty IFS for single var reads

This commit is contained in:
Lucas Gabriel Vuotto 2024-02-05 16:06:50 +00:00
parent 134c479e36
commit 49d068aad3
6 changed files with 7 additions and 7 deletions

View file

@ -46,7 +46,7 @@ if [ -t 0 ]; then
done
fi
else
while read -r flac; do
while IFS= read -r flac; do
[ -f "$flac" ] || err "$flac: not found"
convert_to_ogg "$flac" || rc=$?
done