删除文本文件中出现的字符串
如何从文本文件(命令行)中删除特定字符串,例如
hello
goodbye
goodbye
hello
hello
hello
goodbye
在这种情况下,我想删除所有出现的“再见”,
无论是 linux 还是 Windows(只要 linux 命令在 GNU 中可用)
How would you remove a specific string from a text file (command line) e.g.
hello
goodbye
goodbye
hello
hello
hello
goodbye
In this case I would like to remove all occurrences of "goodbye"
Either linux or Windows, (as longs as the linux command is available in GNU)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
删除多个单词:
To delete multiple words:
如果您正在通过 Vi 模式查找 Linux 文件。请找到以下对我有帮助的解决方案
:g/goodbye/d - 这将删除所有再见
:%g!/goodbye/d - 这将删除除再见之外的所有
即使您使用的是 Windows 计算机,您也可以下载并配置 Ubuntu shell 并使用上述命令。
If you are looking for Linux file through Vi mode. Please find below solution which helped me out
:g/goodbye/d - This will delete all goodbye's
:%g!/goodbye/d - This will delete all except goodbye's
Even if you're using a Windows machine, you can download and configure the Ubuntu shell and use the above commands.
对我来说最好的解决方案,无需使用
sed
,在使用路径和命令等更复杂的字符串时需要转义字符。Best solution for me without using
sed
that requires escaping characters when using more complex strings like paths and commands.