From 867ac1f6c919f027da29e2c2e0592af080f8800e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois-Xavier=20No=C3=A9?= <41744606+FrancoisXavierNoe@users.noreply.github.com> Date: Mon, 25 Oct 2021 15:55:44 +0200 Subject: [PATCH] revert last commit because it clearly doesn't work --- SC2045.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2045.md b/SC2045.md index c184c9f..aafb233 100644 --- a/SC2045.md +++ b/SC2045.md @@ -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 ```