- Aug
- 5
- 0
What's wrong with these lines, on CMD it works
@IF "A" = "A" @(
@ECHO True
) ELSE @(
@CD .
)
@IF "A" = "A" @(
@ECHO True
) ELSE @(
@CD .
)
By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!What's with the @ signs in front of the parentheses?
@ | As the first character in a line: Do not save the current line in the history list when it is executed, nor store it in the CMDLINE environment variable. |