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: