如何在 Bash 中使用 tail 获取文件的最后一个非空行?

发布于 2024-08-28 20:26:49 字数 275 浏览 9 评论 0 原文

如何在 Bash shell 下使用 tail 获取最后一个非空行?

例如,my_file.txt 如下所示:

你好
你好
你好
(空行)
(空行)

显然,如果我执行 tail -n 1 my_file.txt 我会得到一个空行。就我而言,我想获得 bonjour。我该怎么做?

How do I get the last non-empty line using tail under Bash shell?

For example, my_file.txt looks like this:

hello
hola
bonjour
(empty line)
(empty line)

Obviously, if I do tail -n 1 my_file.txt I will get an empty line. In my case I want to get bonjour. How do I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(9

丿*梦醉红颜 2024-09-04 20:26:50

您可以使用 Awk:

awk '/./{line=$0} END{print line}' my_file.txt

此解决方案的优点是仅使用一种工具。

You can use Awk:

awk '/./{line=$0} END{print line}' my_file.txt

This solution has the advantage of using just one tool.

梦亿 2024-09-04 20:26:50

首先使用 grep 过滤掉空行怎么样?

$ cat rjh
1
2
3


$ grep "." rjh | tail -1
3

How about using grep to filter out the blank lines first?

$ cat rjh
1
2
3


$ grep "." rjh | tail -1
3
ゝ杯具 2024-09-04 20:26:50

您可以使用 tail -r(如果可用)代替 tac

tail -r | grep -m 1 '.'

Instead of tac you can use tail -r if available.

tail -r | grep -m 1 '.'
帅气称霸 2024-09-04 20:26:50

如果你想省略任何空格,即行尾的空格/制表符,而不仅仅是空行

awk 'NF{p=$0}END{print p}' file

if you want to omit any whitespaces, ie, spaces/tabs at the end of the line, not just empty lines

awk 'NF{p=$0}END{print p}' file
茶花眉 2024-09-04 20:26:50

如果 tail -r 不可用并且您没有 egrep,则以下方法可以很好地工作:

tac $FILE | grep -m 1 '.'

如您所见,它是前面两个答案的组合。

If tail -r isn't available and you don't have egrep, the following works nicely:

tac $FILE | grep -m 1 '.'

As you can see, it's a combination of two of the previous answers.

淡墨 2024-09-04 20:26:50

我在使用其他解决方案时遇到问题,所以我做了这个。

首先,获取最后 25 行,假设至少 1 行不为空。过滤掉空行,并打印出最后一行。

 tail -n25 file.txt | grep -v "^.$" | tail -n 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.

 tail -n25 file.txt | grep -v "^.
quot; | tail -n 1

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.

把梦留给海 2024-09-04 20:26:50

打印最后一个不只包含制表符和空格的非空行,如下所示:

tac my_file.txt | grep -m 1 '[^[:blank:]]'

请注意,Grep 支持 POSIX 字符类 [:blank:],即使它在其手册页中没有记录直到 2020-01-01

文件可能包含其他不可见字符,因此在某些情况下使用 [:space:] 可能会更好。即使这样,也没有覆盖所有空间,请参阅此处

Print the last non-empty line that does not contain only tabs and spaces like this:

tac my_file.txt | grep -m 1 '[^[:blank:]]'

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.

指尖微凉心微凉 2024-09-04 20:26:50

使用 ag 方式:

cat file.txt | ag "\S" | tail -1

Using ag way:

cat file.txt | ag "\S" | tail -1
抽个烟儿 2024-09-04 20:26:49

使用 tac,这样你就不必读取整个文件:

tac FILE |egrep -m 1 .

Use tac, so you dont have to read the whole file:

tac FILE |egrep -m 1 .
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文