Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
338 views
in Technique[技术] by (71.8m points)

unix - using grep to print specific lines in another file

I want to use grep command to print only those lines that contains a specific string in another file. My file is in xsls format and looks like:

enter image description here

I only want to extract those lines that contain 5'UTR in Annotation column.

The command I use is:

grep 'UTR$' Lee2012.xslx > utr.txt

However, I end up getting an empty file. I'll appreciate if someone can explain what I am doing wrong. Insights will be appreciated. Thank you!

question from:https://stackoverflow.com/questions/65920408/using-grep-to-print-specific-lines-in-another-file

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...