vote up 2 vote down star
2

Hi,

The title speaks for itself really. I only want to know if it exists, not where it is. Is there a one liner to achieve this?

Regards,

Chris

flag

63% accept rate

4 Answers

vote up 0 vote down check
open('some.txt').grep(/string/)
link|flag
vote up 0 vote down

Cheatng a little by using a system call:

system("grep meow cat_sounds.txt")

Will return true if grep returns anything, false if it does not.

I find this is the "best" way because Ruby is slow when it comes to file operations.

link|flag
he hasnt specified his os yet =\ – John T Mar 11 at 5:19
I think it's best to assume he's sane. – Ryan Bigg Mar 11 at 5:20
Funily enough it was a rakefile I was creating when I came up with this question, so I can even re-factor this to sh "grep meow cat_sounds.txt" :-) – ChrisInCambo Mar 11 at 5:36
And it still returns true / false? Cool! rake.rubyforge.org/classes/FileUtils.html#M000018/… haha! The example is even grepping! – Ryan Bigg Mar 11 at 5:41
What does sanity have to do with the fact that not all OSes have a "grep" command? – bk1e Mar 11 at 5:53
show 2 more comments
vote up 1 vote down

Well it seems eed3si9n has the one liner down, here's the longer solution:

f = File.new("file.txt")
text = f.read
if text =~ /string/ then
#relevant code
end
link|flag
You need to quote your file name. – Ryan Bigg Mar 11 at 5:15
yeah just noticed while you posted this – John T Mar 11 at 5:16
one-liner: whatever(x) if File.read("file.txt") =~ /regex/ – rampion Mar 11 at 11:41
vote up 5 vote down

grep for foo OR bar OR baz, stolen from ruby1line.txt.

$  ruby -pe 'next unless $_ =~ /(foo|bar|baz)/' < file.txt
link|flag

Your Answer

Get an OpenID
or

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