mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-23 05:09:43 +00:00
commandline -> command-line
This commit is contained in:
parent
31dee0c52c
commit
a4b80d0b25
@ -112,7 +112,7 @@ rules to make the git history more readable and consistent:
|
||||
* ##refactor - improve code quality
|
||||
* ##remote - r2 over tcp, http, rap, serial .. including collaboration
|
||||
* ##search - rafind2, / command, ..
|
||||
* ##shell - commandline, newshell, ..
|
||||
* ##shell - command-line, argument parsing, new commands, ..
|
||||
* ##signatures-searching/generating them
|
||||
* ##test - testing infrastructure fixes/changes
|
||||
* ##tools - r2pm, rarun2, rax2 ... that don't fit in other categories
|
||||
|
@ -9,7 +9,7 @@ Git version is 5.3.0-git and the [![latest packaged version(s)](https://repology
|
||||
r2 is a rewrite from scratch of radare. It provies a set of libraries, tools and
|
||||
plugins to ease reverse engineering tasks.
|
||||
|
||||
The radare project started as a simple commandline hexadecimal editor focused on
|
||||
The radare project started as a simple command-line hexadecimal editor focused on
|
||||
forensics, over time more features were added to support a scriptable command-line
|
||||
low level tool to edit from local hard drives, kernel memory, programs, remote gdb
|
||||
servers and be able to analyze, emulate, debug, modify and disassemble any binary.
|
||||
|
@ -252,7 +252,7 @@ init|up|update)
|
||||
;;
|
||||
esac
|
||||
|
||||
# commandline flags that work without initialized database
|
||||
# command-line flags that work without initialized database
|
||||
case "$1" in
|
||||
-v|version)
|
||||
echo "r2pm ${R2_VERSION}"
|
||||
|
@ -32,7 +32,7 @@ RAsmPlugin r_asm_plugin_dummy = {
|
||||
};
|
||||
```
|
||||
|
||||
This information is accessible at runtime by using the `L` command or commandline flag in any of the r2 programs:
|
||||
This information is accessible at runtime by using the `L` command or command-line flag in any of the r2 programs:
|
||||
|
||||
```
|
||||
$ r2 -Lj | jq -r '.[].license' | sort -u
|
||||
|
@ -86,7 +86,7 @@ struct label
|
||||
char name[1]; /* space with name in it */
|
||||
};
|
||||
|
||||
/* files that were given on the commandline */
|
||||
/* files that were given on the command-line */
|
||||
struct infile
|
||||
{
|
||||
const char *name;
|
||||
|
@ -565,6 +565,7 @@ static const char *help_msg_ag[] = {
|
||||
"Output formats:", "", "",
|
||||
"<blank>", "", "Ascii art",
|
||||
"*", "", "r2 commands",
|
||||
"b", "", "Braile art rendering (agfb)",
|
||||
"d", "", "Graphviz dot",
|
||||
"g", "", "Graph Modelling Language (gml)",
|
||||
"j", "", "json ('J' for formatted disassembly)",
|
||||
|
@ -12,7 +12,7 @@
|
||||
.Op Fl d
|
||||
.Ar file
|
||||
.Sh DESCRIPTION
|
||||
radare2 is a commandline hexadecimal editor, and this tool allows you to create a contained version inside a Docker image to open your files safely.
|
||||
radare2 is a command-line hexadecimal editor, and this tool allows you to create a contained version inside a Docker image to open your files safely.
|
||||
.Pp
|
||||
The options are:
|
||||
.Bl -tag -width Fl
|
||||
|
@ -1,4 +1,4 @@
|
||||
.Dd Sep 29, 2016
|
||||
.Dd May 25, 2021
|
||||
.Dt RABIN2 1
|
||||
.Sh NAME
|
||||
.Nm RABIN2
|
||||
@ -24,7 +24,7 @@
|
||||
.Sh DESCRIPTION
|
||||
This program allows you to get information about ELF/PE/MZ and CLASS files in a simple way.
|
||||
.Pp
|
||||
All those commandline flags are also available under the i command in radare2. Type i? for help.
|
||||
All those command-line flags are also available under the i command in radare2. Type i? for help.
|
||||
.Bl -tag -width Fl
|
||||
.It Fl @ Ar addr
|
||||
Show information (symbol, section, import) of the given address
|
||||
|
@ -2,7 +2,7 @@
|
||||
.Dt RADARE2 1
|
||||
.Sh NAME
|
||||
.Nm radare2
|
||||
.Nd Advanced commandline hexadecimal editor, disassembler and debugger
|
||||
.Nd Advanced command-line hexadecimal editor, disassembler and debugger
|
||||
.Sh SYNOPSIS
|
||||
.Nm radare2
|
||||
.Op Fl a Ar arch
|
||||
@ -22,7 +22,7 @@
|
||||
.Op Fl 0AdDwntLquvVxX
|
||||
.Ar -|--|=|file
|
||||
.Sh DESCRIPTION
|
||||
radare2 is a commandline hexadecimal editor.
|
||||
radare2 is a command-line hexadecimal editor.
|
||||
.Pp
|
||||
"r2" is the alias program name for radare2.
|
||||
.Pp
|
||||
|
@ -2,7 +2,7 @@
|
||||
.Dt RAFIND2 1
|
||||
.Sh NAME
|
||||
.Nm rafind2
|
||||
.Nd Advanced commandline hexadecimal editor
|
||||
.Nd Advanced command-line hexadecimal editor
|
||||
.Sh SYNOPSIS
|
||||
.Nm rafind2
|
||||
.Op Fl cijzZXnrhqv
|
||||
|
@ -24,7 +24,7 @@ Contains
|
||||
* namespaces (multiple sdb paths)
|
||||
* atomic database sync (never corrupted)
|
||||
* bindings for vala, luvit, newlisp and nodejs
|
||||
* commandline frontend for sdb databases
|
||||
* command-line frontend for sdb databases
|
||||
* memcache client and server with sdb backend
|
||||
* arrays support (syntax sugar)
|
||||
* json parser/getter (js0n.c)
|
||||
@ -89,7 +89,7 @@ Let's play with json:
|
||||
$ sdb - user='{"id":123}' user:id=99 user:id
|
||||
99
|
||||
|
||||
Using the commandline without any disk database:
|
||||
Using the command-line without any disk database:
|
||||
|
||||
$ sdb - foo=bar foo a=3 +a -a
|
||||
bar
|
||||
|
@ -72,7 +72,7 @@ Hello Darwin
|
||||
Commandline
|
||||
-----------
|
||||
|
||||
SPP is also a commandline tool that takes N files as arguments and
|
||||
SPP is also a command-line tool that takes N files as arguments and
|
||||
evaluates them using the selected preprocessor:
|
||||
|
||||
```
|
||||
|
@ -17,7 +17,7 @@
|
||||
.Op [test-(dir|file) ...]
|
||||
.Sh DESCRIPTION
|
||||
Simple preprocessor tool similar to PHP or CPP but focusing on simplicity,
|
||||
ease to be embedded and used from the commandline or the API.
|
||||
ease to be embedded and used from the command-line or the API.
|
||||
.Pp
|
||||
TODO: this manpage is work-in-progress
|
||||
.Pp
|
||||
|
Loading…
Reference in New Issue
Block a user