mirror of https://github.com/CrimsonTome/tldr.git
13 lines
241 B
Markdown
13 lines
241 B
Markdown
|
# rr
|
||
|
|
||
|
> Debugging tool designed to record and replay program execution.
|
||
|
> More information: <https://rr-project.org/>.
|
||
|
|
||
|
- Record an application:
|
||
|
|
||
|
`rr record {{path/to/binary --arg1 --arg2}}`
|
||
|
|
||
|
- Replay latest recorded execution:
|
||
|
|
||
|
`rr replay`
|