1 unstable release
0.2.0 | Jul 20, 2020 |
---|
#1499 in Text processing
6KB
Support an Open Source Developer! ♥️
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.