I have a bat file that writes data to a txt file and i am trying to recover this data using a bat file once again. I can get the first line of a txt file but getting others i can not do so i was wondering. Is there a way to remove a line from a txt file. A example of what i want to happen is this.
3
4
5
6
becomes
4
5
6
and not4
5
6If you can find out how to do this thank you very much.
What does this have to do with C++? This could be one with a single command from CMD: (for /f "skip=1 delims=" %a in (in.txt) do @echo.%a)> out.txt
Yes (14) | ![]() | |
No (14) | ![]() | |
I don't know (15) | ![]() |