Enclose xargs delimiter to fix some bug - postreich - Unnamed repository; edit this file 'description' to name the repository. DIR Log DIR Files DIR Refs DIR README --- DIR commit 411809a9080d2e5fe2f646a45bf0f579ab4afdb3 DIR parent f2520087c461049f493a9839cf5def6d2e23281a HTML Author: Scarlett McAllister <no+reply@roygbyte.com> Date: Wed, 24 Jan 2024 20:53:38 -0400 Enclose xargs delimiter to fix some bug Diffstat: M geomyidae/postreich/api/common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/geomyidae/postreich/api/common b/geomyidae/postreich/api/common @@ -37,7 +37,7 @@ find_value_in_args() { # return the value associated with type. "type" can of course # be any value expected to be found in $2. printf "%s" "$2" \ - | xargs -d ? -I x echo x \ + | xargs -d '?' -I x echo x \ | grep -oE "$1=(.*)" \ | sed "s/$1=//" }