how to join 2 commands together in cmd windows code example
Example: cmd multiple commands
dir & echo foo
dir && echo foo ::Use && if you only want the second to execute if the first excuted successfully
dir & echo foo
dir && echo foo ::Use && if you only want the second to execute if the first excuted successfully