Your sixth column ends with UTR
, not the whole line, that is why you get no results.
To get all lines where the sixth column ends with UTR
, you can use
awk '$6 ~ /UTR$/' Lee2012.xslx > utr.txt
This assumes your column (field) separators are whitespace.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…