From 26988647907e2baecd9bdfee609a1b3205c7984a Mon Sep 17 00:00:00 2001 From: osman ozdemir Date: Mon, 30 Oct 2017 14:02:04 -0400 Subject: [PATCH] elsif -> elif --- bash.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash.md b/bash.md index 4b1a704d3..a498fc789 100644 --- a/bash.md +++ b/bash.md @@ -80,7 +80,7 @@ See: [Functions](#functions) ```bash if [ -z "$string" ]; then echo "String is empty" -elsif [ -n "$string" ]; then +elif [ -n "$string" ]; then echo "String is not empty" fi ```