项目作者: rtuin

项目描述 :
A ZSH plugin to change text casing
高级语言: Shell
项目地址: git://github.com/rtuin/zsh-case.git
创建时间: 2020-01-11T17:06:07Z
项目社区:https://github.com/rtuin/zsh-case

开源协议:MIT License

下载


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

  1. echo "Foo" | tolower
  2. # foo
  3. echo "Foo" | toupper
  4. # FOO

Installation

I recommend Antigen to install and manage your ZSH plugins.

Antigen

Put the following in your ~/.zshrc:

  1. antigen bundle rtuin/zsh-case