A terminal application for monitoring and killing listening processes.
I made this small tool because I can never remember the exact lsof command and flags needed to see whatβs listening on which ports. Itβs just a simple wrapper around lsof -i -P -n -sTCP:LISTEN with a basic TUI for browsing and killing processes.
β/β or j/k - Navigate process list/ - Enter search modes - Sort by different criteriaEnter - Kill selected process (with confirmation)r - Refresh process list1-6 - Sort by different criteriaEsc - Clear search or return to main viewq - Quit applicationFrom Releases: Download the latest binary from the Releases page.
From Source:
git clone https://github.com/aymenkrifa/reaper.git
cd reaper
cargo run
MIT License - see LICENSE file.
Inspired by gruyere π§ by Savannah Ostrowski built in Go. This project was built as a learning experience to explore Rust.