I am searching for "o" then prints all lines with "o". Any suggestion/code I must apply?
data.txt:
j,o,b:
a,b,d:
o,l,e:
f,a,r:
e,x,o:
desired output:
j,o,b:
o,l,e:
e,x,o:
|
|
|||
|
|
|
|
||
|
|
|
|
If you have grep on your system, then Failing that, you could try Perl:
|
|||
|
|
|
|
Does that help? I don't know Perl, but you can get the same output using the above grep. |
||
|
|
|
|
|
||
|
|
|
|
In Perl:
or with grep:
|
||
|
|
|
|
as a very short one-liner:
|
||
|
|