Usando grep
grep 'particular_word' your_mysql_dump
Ou você pode usar a declaração mysql
e SELECT
ou, como disse @Oli em sua resposta % código%. Redefinir o PAGER grep particular_word
com
nopager
EG:
mysql> nopager
PAGER set to stdout
Exemplos
mysql> use mysql
Database changed
mysql> show tables;
+---------------------------+
| Tables_in_mysql |
+---------------------------+
| columns_priv |
| db |
| event |
| func |
| general_log |
| help_category |
| help_keyword |
| help_relation |
| help_topic |
| host |
| ndb_binlog_index |
| plugin |
| proc |
| procs_priv |
| proxies_priv |
| servers |
| slow_log |
| tables_priv |
| time_zone |
| time_zone_leap_second |
| time_zone_name |
| time_zone_transition |
| time_zone_transition_type |
| user |
+---------------------------+
24 rows in set (0,01 sec)
mysql> PAGER grep user
PAGER set to 'grep user'
mysql> show tables;
| user |
24 rows in set (0,00 sec)
mysql>
Ou
mysql> use mysql
Database changed
mysql> select host,user from user where host="localhost" and (user="root" or user="");
+-----------+------+
| host | user |
+-----------+------+
| localhost | |
| localhost | root |
+-----------+------+
2 rows in set (0,00 sec)
mysql> PAGER grep root
PAGER set to 'grep root'
mysql> select host,user from user where host="localhost" and (user="root" or user="");
| localhost | root |
2 rows in set (0,01 sec)
mysql>