diff options
author | dylan <dylan.araps@gmail.com> | 2020-08-25 09:33:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-25 09:33:23 +0300 |
commit | 2d2d96f63b46ed07460b96a5d61339058ab9e79e (patch) | |
tree | 04973874ecf022813d4c368bc1b2312c9aabb5a6 | |
parent | d744927f52a21dbcae182bf16cba82f73fbbf8d2 (diff) | |
parent | 0b078e544ce2d259db6180d3a91c674b9314afaa (diff) | |
download | pure-sh-bible-2d2d96f63b46ed07460b96a5d61339058ab9e79e.tar.gz pure-sh-bible-2d2d96f63b46ed07460b96a5d61339058ab9e79e.zip |
Merge pull request #24 from chambln/master
Fix unbalanced double quotes in comment
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -534,7 +534,7 @@ dirname() { # "${dir##*[!/]}": Remove all non-forward-slashes # from the start of the string, leaving us with only # the trailing slashes. - # "${dir%%"${}"}: Remove the result of the above + # "${dir%%"${}"}": Remove the result of the above # substitution (a string of forward slashes) from the # end of the original string. dir=${dir%%"${dir##*[!/]}"} |