Metadata-Version: 2.1
Name: procboss
Version: 0.2.0
Summary: A process management tool that lists or kills processes by name and port.
Home-page: https://github.com/ryanraposo/pb
Author: ryanraposo
Author-email: raposo.ryan@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.md

# pb

`pb` is a process management tool that lists or kills processes by name and port.

## Installation

To install `pb`, run:

```sh
pip install procboss
```

## Usage

### List Processes

To list processes by name and optionally by port:

```sh
pb list -n <process name> [-p <port>]
```

#### Examples

```sh
pb list -n code
sudo pb list -n code
```

### Kill Processes

To kill processes by name and optionally by port:

```sh
pb kill -n <process name> [-p <port>]
```

#### Examples

```sh
pb kill -n code
sudo pb kill -n code
```

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE.md) file for details.
