No description
Find a file
2020-07-20 15:18:06 -04:00
src Add stdin support 2020-05-30 14:48:46 +00:00
.gitignore init 2019-03-11 14:44:09 -04:00
Cargo.lock code update 2020-05-27 08:14:12 -04:00
Cargo.toml code update 2020-05-27 08:14:12 -04:00
LICENSE Initial commit 2019-03-11 14:44:44 -04:00
README.md fix typo 2020-05-30 14:57:54 +00:00

Support an Open Source Developer! ♥️

Become a patron

Half Caps

A simple command line tool to change half the letters to uppercase!

Usage

$ halfcaps this is text
tHiS iS tExT
$ echo this is text | halfcaps
tHiS iS tExT

Install Using Cargo

First, install Rust (using rustup). Then, it is as simple as:

cargo install -f halfcaps

Build From Source

First, install Rust (using rustup).

Then, run the following to build from source:

# Create a local copy
git clone https://github.com/jojolepro/half_caps
cd half_caps

# Build from source files
cargo build --release

# (Optional) Install for the current user
mv target/release/halfcaps ~/.local/bin/inv

Note: On windows, you should run those commands inside of git bash or Windows Subsystem for Linux.