Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trimpta/clitools
A collection of simple utilities
https://github.com/trimpta/clitools
cli python python3 reusable text-manipulation workflow
Last synced: about 1 month ago
JSON representation
A collection of simple utilities
- Host: GitHub
- URL: https://github.com/trimpta/clitools
- Owner: trimpta
- License: gpl-3.0
- Created: 2024-03-05T16:56:23.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-19T05:40:10.000Z (9 months ago)
- Last Synced: 2024-03-19T07:10:35.826Z (9 months ago)
- Topics: cli, python, python3, reusable, text-manipulation, workflow
- Language: Python
- Homepage:
- Size: 25.4 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# clitools
A collection of simple utilitiesEvery now and then i would write something in small letters and then need to rewrite the entire thing in capital letters, so i just open up Python IDLE and do ```'this is very serious'.upper()```, and copy the output. or i would ```'atpmirt'[::-1]``` and copy the output. This got too repetitive with having to do things like that and some more complicated things which got tedious to do in IDLE every time.
Now i can just do ```$python clitools.py invert atpmirt``` and itll just give me ```trimpta```
^This is just a simple example, you can really take it and use it for whatever small things you wanna incorporate into your workflow
# usage
Get a list of utils: ```$python3 cliutils.py list -m```
Get help for a specific util: ```$python3 cliutils.py ```
_Drop a ⭐ if you found this useful!_