printr
is the smarter echo
alternative. It is meant as a drop-in replacement of echo
and has additional features like automatically guessing the sentiment of the string passed
to it and then outputting it in the corresponding color.
For example:
A positive statement will be colored green.
bash
printr This is quite awesome!
A negative statement will be colored red.
bash
printr Danger ahead!
A neutral statement will be colored blue.
bash
printr Hello World...
For a full list of options and flags available, run printr --help
.
Behind the scenes, printr
performs some light sentiment analysis to guess whether a
statement is positive, negative or neutral.
printr
comes packaged with a convenience install script that can run on all bash systems.
Run the following command in your terminal (git-bash for windows users).
```bash curl https://raw.githubusercontent.com/IgnisDa/printr/main/get-printr.bash -o get-printr.bash
bash get-printr.bash ```
The above command can also be used to update your current installation of printr
.
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use SemVer for versioning. For the versions available, see the tags on this repository.
See also the list of contributors who participated in this project.
This project is licensed under the Apache-2.0 - see the LICENSE.md file for details
Project bootstrapped using cookiecutter by IgnisDa.