Support an Open Source Developer! :hearts:
A simple command line tool to change half the letters to uppercase!
sh
$ halfcaps this is text
tHiS iS tExT
$ echo this is text | halfcaps
tHiS iS tExT
First, install Rust (using rustup).
Then, it is as simple as:
sh
cargo install -f halfcaps
First, install Rust (using rustup).
Then, run the following to build from source: ```sh
git clone https://github.com/jojolepro/halfcaps cd halfcaps
cargo build --release
mv target/release/halfcaps ~/.local/bin/inv ```
Note: On windows, you should run those commands inside of git bash or Windows Subsystem for Linux.