From b8d4d493f1ec89d7e2111bc8d36016b073d6d0ec Mon Sep 17 00:00:00 2001 From: Darren 'Tadgy' Austin Date: Fri, 2 Aug 2024 15:59:06 +0100 Subject: [PATCH] Fix usage example. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c86cccf..5f9e390 100644 --- a/README.md +++ b/README.md @@ -223,7 +223,7 @@ The values within the array element will be separated by \003 (hex). The output of `parse-ini` will not directly show the delimiter character in the terminal, but it *is* there when used in a script: ```bash -eval `$(/path/to/parse-ini --duplicates-merge example.ini)` +eval "$(/path/to/parse-ini --duplicates-merge example.ini)" awk -F $'\003' '{ print $2 }' <<<"${INI_global[Key]}" ```