From 6d3e778e76de5e05a624386f3a9c7e87a3039dad Mon Sep 17 00:00:00 2001 From: Daniel Thomas Date: Thu, 22 Feb 2018 14:10:29 +0000 Subject: [PATCH] Fix syntax error --- SC2010.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2010.md b/SC2010.md index 53ee6ce..dcc5f4e 100644 --- a/SC2010.md +++ b/SC2010.md @@ -28,7 +28,7 @@ rm -- !(*.c) # POSIX for f in ./* do - case $f of + case $f in *.c) true;; *) rm "$f";; esac