mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-22 16:03:54 +02:00
12 lines
262 B
Markdown
12 lines
262 B
Markdown
# rr
|
|
|
|
> Debugging tool designed to record and replay program execution.
|
|
> More information: <https://github.com/rr-debugger/rr/wiki/Usage>.
|
|
|
|
- Record an application:
|
|
|
|
`rr record {{path/to/binary --arg1 --arg2}}`
|
|
|
|
- Replay latest recorded execution:
|
|
|
|
`rr replay`
|