diff --git a/bash.md b/bash.md index 1da454aed..b06e44e3d 100644 --- a/bash.md +++ b/bash.md @@ -404,6 +404,8 @@ if [[ -z "$string" ]]; then echo "String is empty" elif [[ -n "$string" ]]; then echo "String is not empty" +else + echo "This never happens" fi ```