Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert d commands to rzshell #2263

Closed
wants to merge 41 commits into from
Closed
Show file tree
Hide file tree
Changes from 27 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
e3f9b01
debug rzshell sketch
imbillow Jan 28, 2022
78cdf36
remove spaces within brackets
imbillow Jan 29, 2022
63a1b47
Merge branch 'dev' into asan-debug-rzshell
imbillow Mar 7, 2022
eae5cbc
comment for every handler
imbillow Mar 7, 2022
a5a2d47
`dt*`:
imbillow Mar 8, 2022
df40087
dd*
imbillow Mar 8, 2022
e6998c3
fix dd*
imbillow Mar 8, 2022
ea9881d
di* dH dg
imbillow Mar 8, 2022
6591e58
remove help_msg_dts
imbillow Mar 8, 2022
77778a2
fix
imbillow Mar 13, 2022
bb5716f
de*
imbillow Mar 13, 2022
1c42cc5
dL*
imbillow Mar 13, 2022
259a7be
dk*
imbillow Mar 13, 2022
a0ec7a6
do*
imbillow Mar 13, 2022
5405d04
remove code that is no longer used
imbillow Mar 13, 2022
84eb01b
dp*
imbillow Mar 13, 2022
90d0504
dx*
imbillow Mar 13, 2022
8d08438
d[wW]*
imbillow Mar 13, 2022
38e7835
use `RZ_LOG_ERROR` to replace `eprintf`
imbillow Mar 13, 2022
6f6e4bb
make some `RZ_LOG_ERROR` become rz_cons_printf
imbillow Mar 13, 2022
acb7703
move `dLs` back to `dL`
imbillow Mar 13, 2022
d8db1d8
fix
imbillow Mar 14, 2022
b3d4c5f
fix
imbillow Mar 14, 2022
598b488
fix
imbillow Mar 14, 2022
8e69b8c
dcs
imbillow Mar 14, 2022
4108cb0
`dmi*` looks messy needs more refactoring
imbillow Mar 14, 2022
7447d14
ds*
imbillow Mar 14, 2022
205f016
Update librz/core/cmd_descs/cmd_debug.yaml
imbillow Mar 14, 2022
eda8cb9
Update librz/core/cmd_descs/cmd_debug.yaml
imbillow Mar 14, 2022
b859022
Update librz/core/cmd_descs/cmd_debug.yaml
imbillow Mar 14, 2022
4c5d946
Update librz/core/cmd_descs/cmd_debug.yaml
imbillow Mar 14, 2022
12f404e
`dcs*` -> `dcst`
imbillow Mar 14, 2022
21bfe13
Merge branch 'asan-debug-rzshell' of https://github.com/rizinorg/rizi…
imbillow Mar 14, 2022
578a9dd
remove `ddt` `dk <signal>=<x>` `dko` `do`
imbillow Mar 14, 2022
f597c1b
split `dk` in two commands: `dkl` and `dk <signal>`
imbillow Mar 14, 2022
62600a1
move `dif` from `cmd_debug` to `cmd_shell` and rename to `diff`
imbillow Mar 14, 2022
b279574
move `dmia [<libname> [<symname>]]` to `dmi [-a [<libname> [<symname>…
imbillow Mar 15, 2022
385ae6d
fix
imbillow Mar 15, 2022
eda572b
fix
imbillow Mar 16, 2022
c10f2b1
fix
imbillow Mar 16, 2022
8ab826e
fix dmi
imbillow Mar 16, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion librz/core/cmd/cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -6043,7 +6043,6 @@ RZ_API void rz_core_cmd_init(RzCore *core) {
{ "<", "pipe into RzCons.readChar", rz_cmd_pipein },
{ "0", "alias for s 0x", rz_cmd_ox },
{ "a", "analysis", rz_cmd_analysis },
{ "d", "debugger operations", rz_cmd_debug },
{ "k", "perform sdb query", rz_cmd_kuery },
{ "p", "print current block", rz_cmd_print },
{ "q", "exit program session", rz_cmd_quit },
Expand Down
Loading