Batch Script Other Operators
Other Operators
The following table lists the other operators.
Operators | Description |
---|---|
, | Separator |
&& | For using Multiple Commands |
` |
Example: Batch &&
Operator
&&
operator is used for executing multiple commands is a single line.
@echo off
set /A x = 4 && set /A x += 2
echo x = %x%
x = 6