procs is a replacement for ps
written by Rust.
ps
Linux is supported only.
Download from release page, and extract to the directory in PATH.
You can install by cargo.
cargo install procs
Type procs
only. It shows the information of all processes.
console
$ procs
If you add any keyword as argument, it is matched to USER
or Command
by default.
( --mask
option is used to mask USER
/Command
information, actually not required )
console
$ procs zsh --mask
If an integer number is used as the keyword, it is matched to PID
, TCP
, UDP
by default.
Integer is treated as exact match, and other keyword is treated as partial match.
console
$ procs 6000 60000 60001 --mask
This is not implemented yet.