Re: reading breakpoints from a file
Charles Manning <[email protected]>
| Newsgroups | gmane.comp.gdb.general |
|---|---|
| Message-ID | <[email protected]> |
On Thursday 04 October 2007 20:28:27 Kamaraju S Kusumanchi wrote: > Is it possible to read the list of breakpoints from a file? If so, how can > I do it? I looked in the manual but could not find how to do this. Use the source command to read a list of commands from a file So if you have a list of symbols: sym1 sym2 ... Run this through a suitable sed script to generate break sym1 break sym2 ... then use the source command to load this file.