I need to remove the first line of a csv file under
windows
using
cmd
command The file size is around 1GB
I need to remove the first line of a csv file under
windows
using
cmd
command The file size is around 1GB
Using CMD for such large file sizes is not the most efficient.
Also, there is no direct command that lets us edit files on the go (such as vi
in linux).
You can, however, exclude the first X lines from a file & copy it to a new file using:
more +X [file_containing data] > [file_to_export_data_to]
Source: Extract N lines from file using single windows command