add quote on variable in correct code, or we'll have SC2154 error

dcpc007
2019-04-11 16:17:46 +02:00
parent cd51c087cb
commit 2f61243c64

@@ -11,7 +11,7 @@
for f in *.wav
do
[[ -e $f ]] || break # handle the case of no *.wav files
[[ -e "$f" ]] || break # handle the case of no *.wav files
echo "$f"
done