An open API service indexing awesome lists of open source software.

https://github.com/tatsh/misc-scripts

Scripts that are randomly made by me. Caution: these come and go.
https://github.com/tatsh/misc-scripts

cli python

Last synced: about 1 year ago
JSON representation

Scripts that are randomly made by me. Caution: these come and go.

Awesome Lists containing this project

README

          

# Miscellaneous scripts

[![QA](https://github.com/Tatsh/misc-scripts/actions/workflows/qa.yml/badge.svg)](https://github.com/Tatsh/misc-scripts/actions/workflows/qa.yml)

Random scripts I make and might still use.

## Poetry usage

```shell
git clone git@github.com:Tatsh/misc-scripts.git
cd misc-scripts
poetry install
poetry shell
```

Now all Python scripts will work.

## ucwords

Performs title casing on strings. Accepts standard input. Typical use:

```shell
echo "my lowercase string needs some fixes" | ucwords
```