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
The bundled echo command from the coreutils module in the examples handles its parameters differently than the "usual" GNU variant.
In particular, quotes (", ') are not filtered and passed from input to output (parameter -> stdout) verbatim.
Furthermore, the -n flag to omit the trailing newline seems to be ignored (newline is always present).
The improper handling of quotes might be a result of the used "local echo" implementation (see #6) and not an issue with the coreutils modules per-se.
The text was updated successfully, but these errors were encountered:
After some further testing, it appears that neither echo from coreutils nor the "local echo" implementation is at fault here. We just don't properly parse the command line into argument parts.
The bundled
echo
command from the coreutils module in the examples handles its parameters differently than the "usual" GNU variant.In particular, quotes (
"
,'
) are not filtered and passed from input to output (parameter -> stdout) verbatim.Furthermore, the
-n
flag to omit the trailing newline seems to be ignored (newline is always present).The improper handling of quotes might be a result of the used "local echo" implementation (see #6) and not an issue with the coreutils modules per-se.
The text was updated successfully, but these errors were encountered: