jetsung bash 使用 awk 过滤首行和最后一行 awk 'NR>2 {print last} {last=$0}' 过滤最后一行 awk 'NR>1 {print last} {last=$0}' 保留第一行 awk 'NR==1' 保留最后一行 awk 'END {print}'