Minor review comments

This commit is contained in:
yubiuser 2022-04-04 23:14:10 +02:00 committed by GitHub
parent 4d31d5ee11
commit 9b4f6c84cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,7 +34,7 @@ addOrEditKeyValPair() {
local value="${3}"
if [ "${value}" != "" ]; then
# value has a value, so it is a key pair
# value has a value, so it is a key-value pair
if grep -q "^${key}=" "${file}"; then
# Key already exists in file, modify the value
sed -i "/^${key}=/c\\${key}=${value}" "${file}"
@ -52,7 +52,7 @@ addOrEditKeyValPair() {
}
#######################
# Takes two arguments key, and file.
# Takes two arguments file, and key.
# Deletes a key from target file
#
# Example usage: