Metadata-Version: 2.1
Name: tee-cli
Version: 0.2.0
Summary: 
Author: Bohdan Vanieiev
Author-email: warchantua@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

# tee-cli

This tool is a python implementation of a `tee`. 
- It captures stderr+stdout from a `command` and will save it to a file and will print them to a console.
- It propagates `command` exit code correctly.

```bash
tee-cli --help
usage: tee-cli [-h] [-o OUTPUT] command

positional arguments:
  command     Command to run

options:
  -h, --help  show this help message and exit
  -o OUTPUT   Path to output log file with stdout+stderr content
```

