@IF "A" EQU "A" (
@ECHO True
) ELSE (
@CD .
)
in CMD it's allowed to mark a commandblock () with @ to disable output (ECHO OFF) of a whole block, like
@IF "A" EQU "A" (
ECHO True
) ELSE @(
CD .
)
In practice, i disable any possible output and enable areas where i must debug