A tldr client written in Rust.
You can find prebuilt binaries here.
See man tldr
or the online manpage. For a brief description, you can also 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:
bash
tldr --gen-config > $(tldr --config-path)
or copy the below example.
```toml [cache]
dir = "/path/to/cache"
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
[style.url] color = "red" bold = false underline = false italic = true
[style.inline_code] color = "yellow" bold = false underline = false italic = true
[style.placeholder] color = "red" bold = false underline = false italic = true ```