this post was submitted on 28 Jul 2026
-16 points (23.3% liked)
Open Source
48129 readers
174 users here now
All about open source! Feel free to ask questions, and share news, and interesting stuff!
Useful Links
- Open Source Initiative
- Free Software Foundation
- Electronic Frontier Foundation
- Software Freedom Conservancy
- It's FOSS
- Android FOSS Apps Megathread
Rules
- Posts must be relevant to the open source ideology
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
- !libre_culture@lemmy.ml
- !libre_software@lemmy.ml
- !libre_hardware@lemmy.ml
- !linux@lemmy.ml
- !technology@lemmy.ml
Community icon from opensource.org, but we are not affiliated with them.
founded 7 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
What about the typod grep spamming a million lines, or running htop and interactive things?
Both were day-one design constraints, since they're the two obvious ways a "record everything" tool dies.
Runaway output (the typo'd grep): per-command caps. By default backscroll keeps the first 256 KiB and the last 1 MiB of each command's output and drops the middle, marking the entry as truncated — head for context, tail because that's where the error usually is. So a command that spews gigabytes costs at most ~1.25 MB in the DB, and it's zstd-compressed before storage, so repetitive spam usually ends up far smaller than that. Tunable with
run --head-cap/--tail-cap. On top of that there's a total-DB cap (prune --max-size 500M, oldest-first) and ignore patterns for commands you never want recorded.Interactive / full-screen (htop, vim, less, fzf): these switch the terminal to the alternate screen, and backscroll excludes alt-screen bytes from storage entirely. You still get the entry — that htop ran, when, for how long, exit code — but none of the thousands of repaint frames. Interactive programs that don't use the alt screen (a REPL session, say) are recorded as-is under the same caps, which in my experience is what you want: the REPL transcript is often exactly the thing you're trying to find again later.