Add bash logo, written by, linted by to README.

This commit is contained in:
2024-03-20 16:26:36 +02:00
parent fc910ed1e6
commit e0ddbff0d1
2 changed files with 9 additions and 3 deletions

View File

@@ -806,7 +806,7 @@ function getVersionNumberByFile() {
function rightStrip() {
# Usage: rightStrip "string" "pattern"
printf '%s\n' "${1%%$2}"
printf '%s\n' "${1%%"$2"}"
}
# leftStrip - Removes the specified pattern from the start of a string
@@ -824,7 +824,7 @@ function rightStrip() {
# The modified string with the pattern removed from the start
function leftStrip() {
# Usage: leftStrip "string" "pattern"
printf '%s\n' "${1##$2}"
printf '%s\n' "${1##"$2"}"
}
# This function unzips the package located in the `VDM_ZIP_DIR` directory to the specified folder.