自己测序的基因组,需要查找对应基因号 用awk命令查找对应基因号及下一行 awk '$0~/PTG008298L/{print $0; getline; print $0;}' genome.fa 用grep查找对应基因的下一行 grep -A1 'PTG004175L' genome.fa