我有一个这样的文件:
exit;
exit_cool
int exit =30
exitstatus;
exit ;
exit;
some exit;
coolexit;
this line should not be removed.
exitexit;
我想删除仅包含“exit;”的行 从此文件中。所以我希望该命令仅从文件中删除第一行。我目前正在使用此命令:
type somefile.txt | find /v "exit;"
但我得到的输出是:
exit_cool
int exit =30
exitstatus;
exit ;
this line should not be removed.
正如您所看到的,该命令删除了所有包含的行exit;
。我只希望删除第 1 行,因为它是完全匹配的。有帮助吗?