search from to {val|-s str}-
where:
| from | is the start address for the search operation. |
| to | is the end address for the search operation. |
| val | is the hexadecimal value that is the object of the search. |
| -s str | specifies that the search operation is for a string str. |
If the -s option is specified, the next parameter is interpreted as an ASCII string. To search for a multiple-word string, enclose the string in double quotation marks.
The output of this command is printed to the screen via the more command.
The following example searches for 3c and d4 from 0xa0020000 to 0xa0030000:
PMON> search a0020000 a0030000 3c d4The following example searches for "ABC" from 0xa0020000 to 0xa0030000:
PMON> search a0020000 a0030000 -s "ABC"