Shell:获取第一个空行之前的所有行的简单方法
在遇到第一个空行之前输出文件行的最佳 shell 命令是什么?例如:
output these
lines
but do not output anything after the above blank line
(or the blank line itself)
awk?还有别的东西吗?
What's the best shell command to output the lines of a file until you encounter the first blank line? For example:
output these
lines
but do not output anything after the above blank line
(or the blank line itself)
awk? something else?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
另一个 Perl 解决方案:
Another Perl solution:
awk解决方案
Awk solution
使用 sed:
编辑:sed 速度更快。请参阅 ephemient 的答案以获得最快的版本。
要在 awk 中执行此操作,您可以使用:
请注意,我故意编写此内容以避免使用正则表达式。我不知道 awk 的内部优化是什么样的,但我怀疑直接字符串比较会更快。
With sed:
Edit: sed is way, way, way faster. See ephemient's answer for the fastest version.
To do this in awk, you could use:
Note that I intentionally wrote this to avoid using regular expressions. I don't know what awk's internal optimizations are like, but I suspect direct string comparison would be faster.
更多
awk
:更多
sed
:直接在shell 中怎么样?
(或者如果您的 shell 有问题并且始终处理转义,则使用
printf '%s\n'
而不是echo
。)More
awk
:More
sed
:How about directly in shell?
(Or
printf '%s\n'
instead ofecho
, if your shell is buggy and always handles escapes.)一些 Perl 行话
A couple of Perl one-liners
这是使用 Perl 的解决方案:
Here's a solution using Perl: