Skip to content
Snippets Groups Projects
Commit 55a42a23 authored by Stephen D's avatar Stephen D
Browse files

Flesh out readme, rename project

parent 5e24a23a
No related branches found
No related tags found
No related merge requests found
......@@ -72,6 +72,15 @@ dependencies = [
"winapi",
]
[[package]]
name = "dotacat"
version = "0.1.0"
dependencies = [
"clap",
"colored",
"rand",
]
[[package]]
name = "getrandom"
version = "0.1.15"
......@@ -129,15 +138,6 @@ version = "0.2.77"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2f96b10ec2560088a8e76961b00d47107b3a625fecb76dedb29ee7ccbf98235"
[[package]]
name = "lolcatrs"
version = "0.1.0"
dependencies = [
"clap",
"colored",
"rand",
]
[[package]]
name = "os_str_bytes"
version = "2.3.2"
......
[package]
name = "lolcatrs"
name = "dotacat"
version = "0.1.0"
authors = ["Stephen <stephen@scd31.com>"]
description = "Like lolcat, but fast"
edition = "2018"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
......
# Lolcat.rs
# dotacat
Why?
dotacat is meant to be a replacement to lolcat.
## Why?
Speed!
```
$ time echo hi | lolcat
real 0m0.422s
user 0m0.393s
sys 0m0.028s
sys 0m0.028s
```
I use lolcat in my `.bashrc` file, so this amount of time is not ideal for me.
In contrast:
```
time echo hi | dotacat
real 0m0.045s
user 0m0.030s
sys 0m0.020s
```
## Why the name?
Because Dota is better than LoL (According to people - I play neither)
## Installation
`cargo install dotacat`
## Usage
```
USAGE:
dotacat [FLAGS] [OPTIONS] [files]...
ARGS:
<files>... Files to concatenate(`-` for STDIN)
FLAGS:
-h, --help Prints help information
-i, --invert Invert fg and bg
-V, --version Prints version information
OPTIONS:
-F, --freq <freq> Rainbow frequency [default: 0.1]
-S, --seed <seed> Rainbow seed, 0 = random [default: 0.0]
-p, --spread <spread> Rainbow spread [default: 1.0]
Examples:
dotacat f - g Output f's contents, then stdin, then g's contents.
fortune | dotacat Display a rainbow cookie.
```
\ No newline at end of file
......@@ -8,7 +8,7 @@ mod lol;
#[derive(Clap)]
#[clap(author, about, version)]
#[clap(
after_help = "Examples:\n\tlolcatrs f - g\tOutput f's contents, then stdin, then g's contents.\n\tfortune | lolcat\tDisplay a rainbow cookie."
after_help = "Examples:\n\tdotacat f - g\tOutput f's contents, then stdin, then g's contents.\n\tfortune | dotacat\tDisplay a rainbow cookie."
)]
struct CmdOpts {
#[clap(short = 'p', long, default_value = "1.0")]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment