Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
# foo

echo "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
```