The contents of A.BAT are like this:
@echo off
type b.TXT
echo hello
echo bye bye!
As you know, after executing type b.TXT it automatically jumps to the step echo hello. Now I want it, after executing type b.TXT, to directly show the prompt, that is A:\>_ without jumping to the step echo hello. Is there any way?
Using PAUSE can keep it from jumping to the step echo hello, but it cannot show the prompt A:\>_ that is, I can't input anything.
@echo off
type b.TXT
echo hello
echo bye bye!
As you know, after executing type b.TXT it automatically jumps to the step echo hello. Now I want it, after executing type b.TXT, to directly show the prompt, that is A:\>_ without jumping to the step echo hello. Is there any way?
Using PAUSE can keep it from jumping to the step echo hello, but it cannot show the prompt A:\>_ that is, I can't input anything.


