I have a file like this:
exit;
exit_cool
int exit =30
exitstatus;
exit ;
exit;
some exit;
coolexit;
this line should not be removed.
exitexit;
I want to remove the line which contains only "exit;" from this file.So I want the command to remove only the first line from the file.I'm using this command currently:
type somefile.txt | find /v "exit;"
but the output I'm getting is:
exit_cool
int exit =30
exitstatus;
exit ;
this line should not be removed.
As you have seen the command removed all the lines containing exit;.I only want line 1 to be removed as it is the exact match.Any help?