I want a batch file which: removes a certain line [line number by %lnum%] in a txt file.
|
|
||||
|
|
|
That sounds like a job for
To delete the 4th line:
|
|||
|
If you are in windows and you want to do it in a batch file, you could do the following by brute force:
You pass into the batch the name of your target file and the line number you want removed. It creates a temporary file, pipes the 'good' lines from your original into the temp and then finishes up by renaming the files so that you keep your original and have the modified file in place. |
|||
|
|
|
Pure cmd?: delline.cmd number filename
___Notes_____ WARNING: Any blank line from the source file would be skipped/lost in the reading process (by the for..loop). A file with, says 10 lines from which 4 are blanks, would be read as 6 lines to be processed. The line number given would be applied (thus, deleted) from the 6 data lines, and not the starting 10. Edit |
|||
|
|
|
don't have to use any external command. you can use vbscript
how to use:
|
|||
|
|