Is there some loop syntax I could use?
I'm searching for values at addresses with the find command, but rather than manually changing the values at each address it finds one at a time, I'd like to change each addresses' value much faster. Sort of like what you can do with Cheat Engine.
I basically did a search with find like;
(gdb) find 0x00100000,0x00900000, 0x190
Which printed a list of addresses with this value, but now I'd like to change each of the listed addresses' values to 0x140
This will pipe the output of GDB's
findcommand to theawkprogram to generate a series ofsetcommands.