Skip to content
Advertisement

How to GREP words, not lines, that contain specific characters, and print entire word

I have a file with tons of lines and words such as this example:

C742 C743 C744 C745 C835 C836 C837 C838 C839 C840 C841 C842 C843 C844 C845 C935 C936 C937 C938 C939 C940 C941 C942 C943 C944 C945 C1035 C1036 C1037 C1038 C1039 C1040 C1041 C1042 C1043 C1044 C1045 D135 D136 D137 D138 D139 D140 D141 D142 D143 D144 D145 D235 D236 D237 D238 D239 D240 D241 D242 D243 D244 D245 D335 D336 D337 D338 D339 D340 D341 D342 D343 D344 D345 D435 D436 D437 D438 D439 D440 D441 D442 D443 D444

What I want to do is list only the word (assuming each 4 character bundle is a word) that contains a specific number, such as 35.

In this example, I would want the result printed to be:

C835
C935
C1035
D135
D235
D335
D435

I have tried a few different ways such as using grep only to find either the entire line that contains a 35 gets printed, or grep -o 35 only the 35 gets printed and I do not know what the prefix of that number was.

Advertisement

Answer

Try the following bash script:

cat words.txt | tr " " "n" | grep 35

Explanation:

cat reads words.txt and it spits them out to STDOUT, that gets piped into tr which means “translate”: In this case from space (” “) to newline (“n”), then, grep just does its default line-by-line behaviour and searches for anything containing 35.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement