Sean Nguyen
Sean Nguyen

Reputation: 13128

How to grep line containing some words in certain order?

I need to find any lines that contains

"...where....start_time_local..." 

using grep. The "..." represent any words. Can you help me on the grep statement?

Thanks,

Sean

Upvotes: 0

Views: 234

Answers (1)

MK.
MK.

Reputation: 34527

grep "where.*start_time_local" file

Upvotes: 3

Related Questions