procmanager

Helps starting & stopping programs


License
MIT
Install
pip install procmanager==1.0.6

Documentation

ProcManager

An command line to start and stop long-running processes.

Usage

Run some program (python -m http.server) and keep track of it under the name httpd:

procmgr start -n httpd python -m http.server

To list currently running processes:

procmgr list

To remove track of no-longer running processes:

procmgr list

To stop a running process:

procmgr stop <name>

if not specified, name defaults to the process name (first argument of start)

To watch the output of some process:

procmgr watch <name>

Installation

pip install procmanager