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
|
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
|
||
|
|
|
|
|
||
|
|
|
|
Cheatng a little by using a system call:
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. |
||||||||||
|
|
|
Well it seems eed3si9n has the one liner down, here's the longer solution:
|
||
|
|
grep for foo OR bar OR baz, stolen from ruby1line.txt.
|
||
|
|