4

How to delete the first line of a file using Batch?

I really need help... I've tried everything but it didn't work. :( I've tried this :

@echo off
Type test.txt | findstr /I /V /C:"So, lets remove this line" >>Test2.txt
exit
foxidrive
  • 40,353
  • 10
  • 53
  • 68
Login
  • 143
  • 1
  • 1
  • 11

3 Answers3

5

Some tasks are clumsy with pure batch techniques (and mangles characters) - this is a robust solution and uses a helper batch file called findrepl.bat that uses built in jscript-ing from - http://www.dostips.com/forum/viewtopic.php?f=3&t=4697

Place findrepl.bat in the same folder as the batch file.

type "file.txt"|findrepl /v /o:1:1 >"newfile.txt"

Another method is to use more.exe but it has limitations with the number of lines at 64K and it mangles TAB characters.

more +2 <file.txt >newfile.txt
foxidrive
  • 40,353
  • 10
  • 53
  • 68
2
(echo off
for /f "skip=1 tokens=1* delims=" %A in (c:\windows\win.ini) do echo %A
echo on)
David Candy
  • 735
  • 5
  • 8
1

You'll need to loop through your file line by line and output each line, except the first one.

From your example it looks like you might be looking for a specific string.

try this question/answer .. it might help you get you on your way.

Community
  • 1
  • 1
Loopo
  • 2,204
  • 2
  • 28
  • 45