vote up -1 vote down star

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:
flag

0% accept rate
When you get your grade please update this question so we can all feel proud or ashamed. – edg Oct 16 '08 at 15:12

6 Answers

vote up 8 vote down
grep o data.txt

perl -ne 'print if (/o/);' <data.txt
link|flag
vote up 3 vote down

If you have grep on your system, then grep o data.txt from the command line should do the trick.

Failing that, you could try Perl:

open IN, 'data.txt';
my @l = <IN>;
close IN;
foreach my $l (@l) {
   $l =~ /o/ and print $l;
}
link|flag
vote up 1 vote down
grep "o" data.txt

Does that help? I don't know Perl, but you can get the same output using the above grep.

link|flag
vote up 1 vote down
print if /o/;
link|flag
vote up 0 vote down

In Perl:

while (<>) { print if /o/; }

or with grep:

grep 'o' data.txt
link|flag
vote up 0 vote down

as a very short one-liner:

> perl -pe'$_ x=/o/' filename
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.