So, lets say you are making a batch file to open a program and say something.
Here's what you could do:
Code:
@echo off
start ******
@echo text here
pause
@echo more text here (copyright, whatever)
pause
You should use categories to clean that up:
Code:
@echo off
:first
start ******
goto second
:second
@echo text here
pause
@echo more text
pause
There may be a little more code, but it is neater and easier to edit when you go back to it, the categories are also great for looping , so after :second was done, you could add a GOTO to link back the first cat.
You can also use remarks to help note things.
(This technique is shown on a short batch file, but is more useful in longer files, especially ones with inputs)