From b6e8b23fbf65204a0e1e277be443b07f2a4cb34e Mon Sep 17 00:00:00 2001 From: Ashay Humane Date: Sun, 9 Jul 2017 21:42:13 -0700 Subject: [PATCH] Updated SC1048 (markdown) --- SC1048.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/SC1048.md b/SC1048.md index 098b517..5aabddf 100644 --- a/SC1048.md +++ b/SC1048.md @@ -17,6 +17,15 @@ then # TODO: handle this true fi + +# Or use the no-op colon operator ":" +```sh +if [ -e foo ] +then + # TODO: handle this + : +fi +``` ``` ### Rationale: