sed显示文件的倒数第二行:(以下三种方法都可以)
sed -e '$!{h;d;}' -e x file.txt
sed -n 'x;$p' file.txt
sed 'x;$!d' file.txt
加上for循环,批量显示每个文件的倒数第二行
for i in `ls *.log` ;do sed 'x;$p' -n $i ;done
sed显示文件的最后一行: sed -n '$p' 172.18.136.11_property.log
标签:复习,显示文件,命令,sed,file,第二行,txt,log From: https://www.cnblogs.com/cherishthepresent/p/17750755.html