Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rtuin/zsh-case
A ZSH plugin to change text casing
https://github.com/rtuin/zsh-case
antigen zsh zsh-plugin
Last synced: 17 days ago
JSON representation
A ZSH plugin to change text casing
- Host: GitHub
- URL: https://github.com/rtuin/zsh-case
- Owner: rtuin
- License: mit
- Created: 2020-01-11T17:06:07.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-12T11:09:15.000Z (about 5 years ago)
- Last Synced: 2024-11-19T23:44:27.772Z (3 months ago)
- Topics: antigen, zsh, zsh-plugin
- Language: Shell
- Size: 1000 Bytes
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ZSH plugin to change case
This plugin adds two commands to change the casing of output:
* `tolower`
* `toupper`These are basically aliases for `tr '[:upper:]' [:lower:]`.
## Example usage
```bash
echo "Foo" | tolower
# fooecho "Foo" | toupper
# FOO
```## Installation
I recommend [Antigen](https://github.com/zsh-users/antigen) to install and manage your ZSH plugins.
### Antigen
Put the following in your `~/.zshrc`:
```bash
antigen bundle rtuin/zsh-case
```