Fix usage example.

This commit is contained in:
Darren 'Tadgy' Austin 2024-08-02 15:59:06 +01:00
commit b8d4d493f1

View file

@ -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 output of `parse-ini` will not directly show the delimiter character in
the terminal, but it *is* there when used in a script: the terminal, but it *is* there when used in a script:
```bash ```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]}" awk -F $'\003' '{ print $2 }' <<<"${INI_global[Key]}"
``` ```