I am running the following lines,
@echo off
echo hi
echo hello
echo bye
pause
cls
echo welcome
echo once again
pause
output,
hi
hello
bye
press any key to continue...
output after pressing the key,
welcome
once again
press any key to continue...
expected output after pressing the key,
Hi
Welcome
once again
press any key to continue...
mean , my need is not including Hi . My need is how to clear only above two lines, instead of clearing whole screen using cls..only hello and bye (above two lines) need to clear instead of clearing whole screen.
This is not orginal program it is just to explain and example to show u my concept and need. i hope i have make u understand my prblm.. Please help