我有一个文件,其中包含以下最后三行。我想检索倒数第二行,即100.000;8438; 06:46:12
。
.
.
.
99.900; 8423; 06:44:41
100.000;8438; 06:46:12
Number of patterns: 8438
我不知道行号。如何使用shell脚本检索它?在此先感谢您的帮助。
答案 0 :(得分:88)
试试这个:
tail -2 yourfile | head -1
答案 1 :(得分:3)
ed
和sed
也可以。
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
答案 2 :(得分:2)
使用此
tail -2 <filename> | head -1
答案 3 :(得分:2)
受https://stackoverflow.com/a/7671772/5287901
启发的短片单线sed -n 'x;$p'
说明:
-n
安静模式:不自动打印模式空间x
:交换模式空间和保留空间(保持空间现在存储当前行,并模式空间前一行,如果有的话)$
:在最后一行p
:打印图案空间(上一行,在本例中是倒数第二行)。答案 4 :(得分:1)
来自:Eric Pement的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
你不需要所有这些,只需选择一个。
答案 5 :(得分:0)
澄清已经说过的话:
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
答案 6 :(得分:0)
tac <file> | sed -n '2p'