I'm looking for a way to run echo and type in one line on DOS batch.
echo [No.1]
type No1.log
echo [No.2]
type No2.log
this script will output like below
[No.1]
No1.log No1.log No1.log No1.log
[No.2]
No2.log No2.log No2.log No2.log
But this is not good for legibility. I want to print like below
[No.1] No1.log No1.log No1.log No1.log
[No.2] No2.log No2.log No2.log No2.log