linux 如何使用Bash读取文件中的倒数第二行?

velaa5lx  于 2022-11-02  发布在  Linux
关注(0)|答案(8)|浏览(285)

我有一个文件,它的最后三行是以下内容。我想检索倒数第二行,即100.000;8438; 06:46:12

.
.
.
99.900; 8423;   06:44:41
100.000;8438;   06:46:12
Number of patterns: 8438

我不知道行号。如何使用shell脚本检索它?提前感谢您的帮助。

r7knjye2

r7knjye21#

试试看:

tail -2 yourfile | head -1
jgzswidk

jgzswidk2#

https://stackoverflow.com/a/7671772/5287901启发的简短sed单行广告

sed -n 'x;$p'

说明:

  • -n安静模式:不自动打印模式空间
  • x:交换模式空间和保留空间(保留空间现在存储当前行,模式空间存储前一行,如果有)
  • $:在最后一行,p:打印图案间距(上一行,在本例中为倒数第二行)。
rwqw0loc

rwqw0loc3#

使用此

tail -2 <filename> | head -1
oxiaedzo

oxiaedzo4#

edsed也可以执行此操作。

str='
99.900; 8423; 06:44:41
100.000;8438; 06:46:12
Number of patterns: 8438
'

printf '%s' "$str" | sed -n -e '${x;1!p;};h'                     # print last line but one
printf '%s\n' H '$-1p' q | ed -s <(printf '%s' "$str")           # same
printf '%s\n' H '$-2,$-1p' q | ed -s <(printf '%s' "$str")       # print last line but two
nwo49xxi

nwo49xxi5#

发件人:Useful sed one-liners作者:埃里克·佩门特


# print the next-to-the-last line of a file

sed -e '$!{h;d;}' -e x              # for 1-line files, print blank line
sed -e '1{$q;}' -e '$!{h;d;}' -e x  # for 1-line files, print the line
sed -e '1{$d;}' -e '$!{h;d;}' -e x  # for 1-line files, print nothing

你不需要所有的,只要选择一个。

yzxexxkh

yzxexxkh6#

为了 澄清 已经 说过 的 话 :

ec2thisandthat | sort -k 5 | grep 2012- | awk '{print $2}' | tail -2 | head -1

snap-e8317883
snap-9c7227f7
snap-5402553f
snap-3e7b2c55
snap-246b3c4f
snap-546a3d3f
snap-2ad48241
snap-d00150bb

中 的 每 一 个
返回

snap-2ad48241

格式

w1jd8yoj

w1jd8yoj7#

tac <file> | sed -n '2p'
kjthegm6

kjthegm68#

tail +2 <filename>

这将从第二行打印到最后一行。

相关问题