Hello, I have a mysql dump. With grep, I try to find the strings that match the given regular expression. For example grep --color "youtube.com/embed" dump.sql
But the entire database dump is written in one line. And the dump is very large, and it displays almost everything. I try egrep -o --color "youtube.com/embed" dump.sql
, but it only displays "youtube.com/embed". How can I make it possible to display youtube.com/embed and more adjacent characters. for example "src =" // www. youtube.com/embed / ZGrvJ3m4kS8 "fra"? Thank you in advance.