execute multiple commands in cmd code example
Example 1: cmd multiple commands
dir & echo foo
dir && echo foo ::Use && if you only want the second to execute if the first excuted successfully
Example 2: execute multiple commands in linux
command_1 && command_2