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.
- Host: GitHub
- URL: https://github.com/tatsh/misc-scripts
- Owner: Tatsh
- Created: 2012-03-26T04:06:30.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2025-04-08T00:08:05.000Z (about 1 year ago)
- Last Synced: 2025-04-12T19:09:06.473Z (about 1 year ago)
- Topics: cli, python
- Language: Python
- Homepage: https://tatsh.github.io/misc-scripts/
- Size: 4.53 MB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- Citation: CITATION.cff
Awesome Lists containing this project
README
# Miscellaneous scripts
[](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
```