DOS – Multiple Commands in Single Line – How to enter multiple commands into a single line

Description: Use & to separate multiple commands within a single command line.

Script:

cls&dir

for /l %%a IN (10,-1,0) do @echo.%%a:&echo.This is line number %%a
SOURCE

LINK

LANGUAGE
ENGLISH