Closed. This question needs to be more focused. It is not currently accepting answers. Learn more
想改进这个问题吗?更新问题,使其只关注一个问题editing this post
去年关门了。
我试过在这里搜索,但似乎只有命令可以帮助删除文本文件中的空行。
有没有一个linux bash脚本,我可以执行它来删除任何文本文件中的空白行?

最佳答案

将file.txt替换为文件的名称和路径,并在shell中运行此命令:

sed -i '/^$/d' file.txt

10-06 06:03
查看更多