https://bugs.winehq.org/show_bug.cgi?id=54928
Bug ID: 54928 Summary: exclamation mark ! in string missing if EnableDelayedExpansion Product: Wine Version: 8.6 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: cmd Assignee: wine-bugs@winehq.org Reporter: huangqinjin@gmail.com Distribution: ---
test.bat:
@echo off set "BEFORE_DELAY=before!" setlocal EnableDelayedExpansion set "AFTER_DELAY=after^!" echo !BEFORE_DELAY! echo !AFTER_DELAY!
Output: Window cmd: before! after!
Wine cmd: before after^
https://bugs.winehq.org/show_bug.cgi?id=54928
Vijay Kamuju infyquest@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |infyquest@gmail.com
--- Comment #1 from Vijay Kamuju infyquest@gmail.com --- With the 9.12 it prints the below output and not fixed completely
before! after^