Expand description
CLI command implementations
Each command is implemented in its own module and follows a consistent pattern:
- Parse arguments from clap
- Execute the operation
- Format and display results
Re-exports§
pub use info::InfoCommand;pub use kill::KillCommand;pub use on::OnCommand;pub use ports::PortsCommand;pub use ps::PsCommand;pub use stop::StopCommand;pub use stuck::StuckCommand;pub use tree::TreeCommand;pub use unstick::UnstickCommand;
Modules§
- info
- Info command - Get detailed process information
- kill
proc kill- Kill processes- on
proc on- Port/process lookup- ports
proc ports- List all listening ports- ps
proc ps- List processes- stop
- Stop command - Graceful process termination (SIGTERM)
- stuck
proc stuck- Find stuck/hung processes- tree
- Tree command - Show process tree
- unstick
- Unstick command - Attempt to recover stuck processes