Привет. Я считаю, что это невозможно сделать с помощью командной строки, это довольно сложное требование.
Вы бы хотели более подробно объяснить свою задачу?
Вот фрагмент кода в C #, который может вам помочь.
string filePath = @"c:\temp\test.txt";
string line;
string NewText = string.Empty;
if (File.Exists( filePath ))
{
StreamReader file = null;
int linecounter = 0;
file = new StreamReader( filePath );
while ((line = file.ReadLine()) != null)
{
if(linecounter==1)
{
linecounter ++;
continue;
}
linecounter ++;
}
//then save the new text in a file or overwrite your current file