You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 27, 2025. It is now read-only.
Given a sample file:
$ cat 2
a=AB C
b='AB C'
c="AB C"
Attempt to process by comma_path_value_to_var gives:
$ source comma-application-util ; comma_path_value_to_var < 2 ; echo "a=<$a>, b=<$b>, c=<$c>"
C: command not found
a=, b=<'AB C'>, c=<>
Apparently, C in double-quoted right-hand-side is taken as a name of a command, which is an error, and thus never assigned.
Expected output:
a=, b=<'AB C'>, c=
or
a=, b=<'AB C'>, c=<"AB C">