如何在 Bash 中使用 tail 获取文件的最后一个非空行?
如何在 Bash shell 下使用 tail
获取最后一个非空行?
例如,my_file.txt
如下所示:
你好
你好
你好
(空行)
(空行)
显然,如果我执行 tail -n 1 my_file.txt
我会得到一个空行。就我而言,我想获得 bonjour
。我该怎么做?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
您可以使用 Awk:
此解决方案的优点是仅使用一种工具。
You can use Awk:
This solution has the advantage of using just one tool.
首先使用
grep
过滤掉空行怎么样?How about using
grep
to filter out the blank lines first?您可以使用
tail -r
(如果可用)代替tac
。Instead of
tac
you can usetail -r
if available.如果你想省略任何空格,即行尾的空格/制表符,而不仅仅是空行
if you want to omit any whitespaces, ie, spaces/tabs at the end of the line, not just empty lines
如果
tail -r
不可用并且您没有egrep
,则以下方法可以很好地工作:tac $FILE | grep -m 1 '.'
如您所见,它是前面两个答案的组合。
If
tail -r
isn't available and you don't haveegrep
, the following works nicely:tac $FILE | grep -m 1 '.'
As you can see, it's a combination of two of the previous answers.
我在使用其他解决方案时遇到问题,所以我做了这个。
首先,获取最后 25 行,假设至少 1 行不为空。过滤掉空行,并打印出最后一行。
这样做的一个主要优点是,您可以显示多于 1 行,只需将最后 1 行更改为 5 行即可。此外,它只读取文件的最后 25 行。
如果您有大量空行,您可能需要将 25 更改为更大的值,重复此操作直至有效。
I had problems using other solutions, so I made this.
First, get last 25 lines, assuming at least 1 is not empty. Filter out empty lines, and print out the last line.
One major advantage this has, you can show more than 1 line, just by changing the last 1 to, lets say, 5. Also, it only reads last 25 lines of the file.
If you have huge amounts of empty lines, you might want to change the 25 to something bigger, repeating until it works.
打印最后一个不只包含制表符和空格的非空行,如下所示:
请注意,Grep 支持 POSIX 字符类
[:blank:]
,即使它在其手册页中没有记录直到 2020-01-01。文件可能包含其他不可见字符,因此在某些情况下使用
[:space:]
可能会更好。即使这样,也没有覆盖所有空间,请参阅此处。Print the last non-empty line that does not contain only tabs and spaces like this:
Note that Grep supports POSIX character class
[:blank:]
even if it is not documented in its manual page until 2020-01-01.File may contain other non-visible characters, so maybe using
[:space:]
may be better in some cases. All space is not covered even by that, see here.使用 ag 方式:
Using ag way:
使用 tac,这样你就不必读取整个文件:
Use tac, so you dont have to read the whole file: