mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-05 20:50:06 +00:00
14ef1cf602
- r_debug_reg and r_debug_regset - Handles dbg->newstate to force register sync - Only dbg.reg.read() for x86-32 and 64 * Added dummy copy of manpages (from old radare1)
42 lines
964 B
Groff
42 lines
964 B
Groff
.Dd July 17, 2008
|
|
.Dt RADIFF 1
|
|
.Os
|
|
.Sh NAME
|
|
.Nm radiff
|
|
.Nd Unified binary diffing utility
|
|
.Sh SYNOPSIS
|
|
.Nm radiff
|
|
.Op -cbgeirp
|
|
.Op file.a
|
|
.Op file.b
|
|
.Sh DESCRIPTION
|
|
radiff implements some binary diffing algorithms.
|
|
.Pp
|
|
.Bl -tag -width Fl
|
|
.It Fl b
|
|
Use bytediff (byte-per-byte binary diffing between two target files), this is the faster way to do it, but it will not handle byte insertion or offset displacements.
|
|
.It Fl d
|
|
Use the GNU diff as backend (slow, but really good output)
|
|
.It Fl e
|
|
Use the erg0ts generic c++ implementation of bindiff
|
|
.It Fl r
|
|
Perform a diff between two RDB files (radare databases) these files can be generated from radare using the code analysis commands, or from IDA using the ida2rdb.idc script)
|
|
.It Fl h
|
|
Show usage help message.
|
|
.Sh SEE ALSO
|
|
.Pp
|
|
.Xr bindiff(1) ,
|
|
.Xr hasher(1) ,
|
|
.Xr radare(1) ,
|
|
.Xr rabin(1) ,
|
|
.Xr rfile(1) ,
|
|
.Xr xc(1) ,
|
|
.Xr rsc(1) ,
|
|
.Xr rasc(1) ,
|
|
.Xr rasm(1) ,
|
|
.Xr xrefs(1)
|
|
.Sh AUTHORS
|
|
.Pp
|
|
pancake <@youterm.com>
|
|
.Pp
|