A tldr client written in Rust.
You can find prebuilt binaries here.
See the tldr client specification or run:
tldr --help
Tlrc can be customized with a TOML configuration file. To get the default path for your system, run:
tldr --config-path
To generate a default config file, run:
tldr --gen-config
or copy the below example.
```toml [cache]
dir = "/home/v/.cache/tlrc"
autoupdate = true maxage = 336
languages = []
[output]
show_title = true
compact = false
raw_markdown = false
[style.title]
color = "magenta" bold = true underline = false italic = false
[style.description] color = "magenta" bold = false underline = false italic = false
[style.bullet] color = "green" bold = false underline = false italic = false
[style.example] color = "cyan" bold = false underline = false italic = false ```