Line end escaping with ^
expression can break next line parsing
#13
andry81
started this conversation in
Show and tell
Replies: 1 comment
-
Another issue: call; & ^
"%COMSPEC%" /c echo 123 ^
echo 456 Result:
Workaround 1: call; & ^
call; & "%COMSPEC%" /c echo 123 ^
echo 456 Result:
Workaround 2: call; ^
& "%COMSPEC%" /c echo 123 ^
echo 456 Result:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Issue:
Result:
Workaround:
Result:
Beta Was this translation helpful? Give feedback.
All reactions