我正在尝试在 Windows 的 shell 中的“FOR /F”中运行以下命令...
wmic process where ParentProcessId=%%PID%% get ProcessId
该=ParentProcessId和PID%%的保持gettings替换一个空格。
结果是:
for /F "usebackq" %b in (wmic process where ParentProcessId %PID% get ProcessId) do (.
我将如何转义此字符 = 符号?