Reputation: 13128
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
Reputation: 34527
grep "where.*start_time_local" file
Upvotes: 3