I have a batch file with more command to skip the first few lines of the file and print the rest. I am using more +6 file_name
. I see that it opens some percentage of the file and asks the user to enter the prompt so that it can load the next portion. I tried redirecting the output of the more command to a file using the >
operation to another file and still have the same problem.
When MORE is used without any redirection symbols it will display the percent complete e.g.
MORE /E myfile.txt
--More (17%) --
Thanks, Pavan.