revert last commit because it clearly doesn't work

François-Xavier Noé
2021-10-25 15:55:44 +02:00
parent 0bcbefb47c
commit 867ac1f6c9

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