mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 02:41:46 +00:00
18 lines
334 B
Plaintext
18 lines
334 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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`
|