Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kurtbuilds/proc
A CLI tool to search for processes (e.g. by open port) and manage them
https://github.com/kurtbuilds/proc
cli port ps rust
Last synced: 25 days ago
JSON representation
A CLI tool to search for processes (e.g. by open port) and manage them
- Host: GitHub
- URL: https://github.com/kurtbuilds/proc
- Owner: kurtbuilds
- License: mit
- Created: 2022-01-30T16:59:06.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-09T06:16:52.000Z (over 2 years ago)
- Last Synced: 2024-10-12T19:08:42.021Z (25 days ago)
- Topics: cli, port, ps, rust
- Language: Rust
- Homepage:
- Size: 24.4 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# proc
`proc` makes it easy to find and manage system processes. Right now, the main usage is finding processes by the ports
it is listening on, but more features are planned.# Usage
# Find the process listening on port 5000
proc -p 5000# Find the process listening on port 5000 and print the process name
proc -ap 5000# Find the process listening on port 5000 and kill it
proc -p 5000 -- kill# Installation
cargo install proc-find
# Roadmap
# Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
Don't forget to give the project a star! Thanks again!1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request