Fixes in manpages

This commit is contained in:
pancake 2013-04-16 19:54:26 +02:00
parent 5c40488acc
commit 5e47ba3a7e
4 changed files with 19 additions and 19 deletions

View File

@ -82,19 +82,19 @@ Show usage help message.
.Pp
List symbols of a program
.Pp
$ rabin2 -s a.out
$ rabin2 \-s a.out
.Pp
Get offset of symbol
.Pp
$ rabin2 -n _main a.out
$ rabin2 \-n _main a.out
.Pp
Get entrypoint
.Pp
$ rabin2 -e a.out
$ rabin2 \-e a.out
.Pp
Load symbols and imports from radare
.Pp
.!rabin2 -vrsi a.out
.!rabin2 \-vrsi a.out
.Sh SEE ALSO
.Pp
.Xr rahash2(1) ,

View File

@ -21,7 +21,7 @@ Count number of differences.
Graphdiff code instead of data
.It Fl O
Do code diffing with all bytes instead of just the fixed opcode bytes
.It Fl t Ar 0-100
.It Fl t Ar 0\-100
Choose matching threshold for binary code diffing
.It Fl d
Use delta diffing (slower).

View File

@ -52,11 +52,11 @@ Describe opcode (whats op)
.Pp
Assemble opcode:
.Pp
$ rasm2 -a x86 -b 32 'mov eax, 33'
$ rasm2 \-a x86 \-b 32 'mov eax, 33'
.Pp
Disassemble opcode:
.Pp
$ rasm2 -d 90
$ rasm2 \-d 90
.Sh SEE ALSO
.Pp
.Xr radare2(1) ,

View File

@ -38,18 +38,18 @@ Show usage help message
.Pp
Available variable types are:
.Pp
int -> hex rax2 10
hex -> int rax2 0xa
\-int -> hex rax2 \-77
\-hex -> int rax2 0xffffffb3
int -> bin rax2 b30
bin -> int rax2 1010d
float -> hex rax2 3.33f
hex -> float rax2 Fx40551ed8
oct -> hex rax2 35o
hex -> oct rax2 Ox12 (O is a letter)
bin -> hex rax2 1100011b
hex -> bin rax2 Bx63
int \-> hex rax2 10
hex \-> int rax2 0xa
\-int \-> hex rax2 \-77
\-hex \-> int rax2 0xffffffb3
int \-> bin rax2 b30
bin \-> int rax2 1010d
float \-> hex rax2 3.33f
hex \-> float rax2 Fx40551ed8
oct \-> hex rax2 35o
hex \-> oct rax2 Ox12 (O is a letter)
bin \-> hex rax2 1100011b
hex \-> bin rax2 Bx63
.Pp
With no arguments, rax2 reads values from stdin. You can pass one or more values
as arguments.