Batch file to delete first 3 lines of a text file

后端 未结 5 1767
广开言路
广开言路 2020-11-28 14:06

As the title states I need a batch file to delete the FIRST 3 lines of a text file.

for example:

A    
B    
C    
D    
E   
F    
G
5条回答
  •  离开以前
    2020-11-28 14:25

    I use "more" command for outting file after nth line Command (windows)

    More +n orginalfilename.txt > outputfilename.txt
    

    Description: Outputting file of txt after nth line

提交回复
热议问题