diff options
author | black <dylan.araps@gmail.com> | 2019-09-20 16:56:18 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-20 16:56:18 +0300 |
commit | 9f252b5aa58224ad21a26db4c13287d9cd471667 (patch) | |
tree | eb82922211d973b2bc598cfa9a7de3dd00c445aa | |
parent | 4011d6482b668433eb6edd7f5993f650703e059d (diff) | |
parent | d5a96302f629b526f94745e6f4b431b02f7b6e4e (diff) | |
download | pure-sh-bible-9f252b5aa58224ad21a26db4c13287d9cd471667.tar.gz pure-sh-bible-9f252b5aa58224ad21a26db4c13287d9cd471667.zip |
Merge pull request #4 from jan4843/patch-2
Fix confusing substring examples
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -193,12 +193,12 @@ John Black is my name. ```shell case $var in - *sub_string*) + *sub_string1*) # Do stuff ;; *sub_string2*) - # Do more stuff + # Do other stuff ;; *) @@ -213,12 +213,12 @@ esac ```shell case $var in - sub_string*) + sub_string1*) # Do stuff ;; sub_string2*) - # Do more stuff + # Do other stuff ;; *) @@ -233,12 +233,12 @@ esac ```shell case $var in - *sub_string) + *sub_string1) # Do stuff ;; *sub_string2) - # Do more stuff + # Do other stuff ;; *) |