I have a log file with 12_500_000 lines.
I would like to remove the first n lines from the file, ideally not having to create a copy.
The problem with writing changes to a new file after removing every line is the time and space complexity.
Any ideas on how to do that?