Files
cheatsheet-tldr/tldr/rr
2025-08-17 00:22:45 +00:00

18 lines
355 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://github.com/rr-debugger/rr/wiki/Usage>.
- Record an application:
`rr record {{path/to/binary --arg1 --arg2}}`
- Replay latest recorded execution:
`rr replay`