diff options
author | johannst <johannes.stoelp@gmail.com> | 2019-11-17 14:43:01 +0100 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2019-11-17 14:43:01 +0100 |
commit | 42f4f34d8c4d26d9033c6905f912279237a1a3f3 (patch) | |
tree | 293b72077687b1af8b867f99cb0d09ebc2032e05 /radare2.txt | |
parent | 787183114445f83025a0866e41cb9338e90f8b60 (diff) | |
download | notes-42f4f34d8c4d26d9033c6905f912279237a1a3f3.tar.gz notes-42f4f34d8c4d26d9033c6905f912279237a1a3f3.zip |
updated README, added r2 notes
Diffstat (limited to 'radare2.txt')
-rw-r--r-- | radare2.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/radare2.txt b/radare2.txt index 79402d3..1706d77 100644 --- a/radare2.txt +++ b/radare2.txt @@ -3,9 +3,22 @@ # toc ------ + |print| + |flags| |help| |relocation| +# print *print* +======= + pd <n> [@ <addr>] # print disassembly for <n> instructions + # with optional temporary seek to <addr> + +# flags *flags* +======= + fs # list flag-spaces + fs <fs> # select flag-space <fs> + f # print flags of selected flag-space + # help *help* ======= ?*~<kw> # '?*' list all commands and '~' grep for <kw> |