tldr-bash-client/README.md

120 lines
4.6 KiB
Markdown
Raw Permalink Normal View History

# tldr-bash-client
2016-01-04 06:33:47 +01:00
* version 0.6.2
2017-02-22 17:06:21 +01:00
### Bash client for tldr: community driven man-by-example
**A fully-functional [bash](https://tiswww.case.edu/php/chet/bash/bashtop.html)
2017-09-22 06:19:52 +02:00
client for the [tldr](https://tldr.sh) project, providing
poignant examples of terminal commands.**
2016-01-04 06:33:47 +01:00
2017-05-29 10:51:36 +02:00
<img alt="tldr page gif" src="tldr-page.gif" title="tldr page" />
2016-01-04 06:33:47 +01:00
This client can render both the old and the new tldr markup format.
## Installation
Download the tldr bash script to the install location:
2016-01-04 07:00:35 +01:00
```bash
2022-11-14 05:22:41 +01:00
L=/usr/local/bin/tldr # elevated privileges needed for some locations
sudo wget -qO $L good4.eu/tldr
sudo chmod +x $L
```
2016-01-04 07:00:35 +01:00
If the location is not in $PATH, you need to specify the path to run it.
2017-05-29 05:03:56 +02:00
<img alt="tldr page screenshot" src="tldr-page.jpg" title="tldr page" width="600" />
<img alt="tldr usage screenshot" src="tldr-usage.jpg" title="tldr usage" width="600" />
2017-02-06 04:28:38 +01:00
### Prerequisites
coreutils, grep, unzip, curl / wget, less (optional)
2016-01-04 06:33:47 +01:00
<img alt="tldr search screenshot" src="tldr-search.jpg" title="tldr search" width="600" />
2016-01-04 06:33:47 +01:00
2017-11-29 04:33:41 +01:00
## Output customisation
<img alt="tldr customize screenshot" src="tldr-customize.jpg" title="tldr customize" width="600" />
The 5 elements in TLDR markup that can be styled with these colors and
backgrounds (last one specified will be used) and modes (more can apply):
* Colors: Black, Red, Green, Yellow, Blue, Magenta, Cyan, White
* BG: BlackBG, RedBG, GreenBG, YellowBG, BlueBG, MagentaBG, CyanBG, WhiteBG
* Modes: Bold, Underline, Italic, Inverse
`Newline` can be added to the style list to add a newline before the element
and `Space` to add a space at the start of the line
2022-11-14 05:22:41 +01:00
(style items are separated by space, lower/uppercase mixed allowed):
* TLDR_TITLE_STYLE (defaults to: Newline Space Bold Yellow)
* TLDR_DESCRIPTION_STYLE (defaults to: Space Yellow)
* TLDR_EXAMPLE_STYLE (defaults to: Newline Space Bold Green)
* TLDR_CODE_STYLE (defaults to: Space Bold Blue)
* TLDR_VALUE_ISTYLE (defaults to: Space Bold Cyan)
The Value style (above) is an Inline style: doesn't take Newline or Space
2022-11-14 05:22:41 +01:00
Inline styles for help text: default, URL, option, platform, command, header:
* TLDR_DEFAULT_ISTYLE (defaults to: White)
* TLDR_URL_ISTYLE (defaults to: Yellow)
* TLDR_HEADER_ISTYLE (defaults to: Bold)
* TLDR_OPTION_ISTYLE (defaults to: Bold Yellow)
* TLDR_PLATFORM_ISTYLE (defaults to: Bold Blue)
* TLDR_COMMAND_ISTYLE (defaults to: Bold Cyan)
* TLDR_FILE_ISTYLE (defaults to: Bold Magenta)
2022-11-14 05:22:41 +01:00
Color/BG (Newline and Space also allowed) for error and info messages:
* TLDR_ERROR_COLOR (defaults to: Newline Space Red)
* TLDR_INFO_COLOR (defaults to: Newline Space Green)
2022-11-14 05:22:41 +01:00
How many days before freshly downloading a potentially stale page:
* TLDR_EXPIRY (defaults to 7)
2022-11-14 05:22:41 +01:00
Alternative location of pages cache:
* TLDR_CACHE (not set by default)
2022-11-14 05:22:41 +01:00
Usage of 'less' or 'cat' for output (set to '0' for cat):
* TLDR_LESS (*1* by default; if set to *0* `cat` will be used)
2022-11-14 05:22:41 +01:00
Force current OS or not:
* TLDR_OS (overrides what is read by `uname -s`)
2022-11-14 05:22:41 +01:00
Force preferred language: ISO639 format (2 lowercase letters):
* TLDR_LANG (not set by default, $LANG is used from environment)
2017-11-27 14:38:39 +01:00
<img alt="tldr list screenshot" src="tldr-list.jpg" title="tldr list" width="600" />
2016-01-04 06:33:47 +01:00
2017-11-29 04:33:41 +01:00
## Autocompletion
When the following lines are added to `~/.bashrc` or run in the current session,
then *tldr* will autocomplete, which means possible tldr page names will be
suggested when tapping the **Tab** key twice on an incomplete tldr page name:
```
2022-11-14 05:22:41 +01:00
cachedir=~/.local/share/tldr/pages # Or whatever else the location of the tldr cache is
2017-11-29 04:33:41 +01:00
complete -W "$(q=($cachedir/*/*); sed 's@\.md @ @g' <<<${q[@]##*/})" tldr
```
2017-11-29 15:17:43 +01:00
<img alt="tldr new markdown screenshot" src="tldr-markdown-new.jpg" title="tldr new markdown" width="600" />
2017-11-29 04:33:41 +01:00
2017-06-09 05:11:18 +02:00
# tldr-lint
2017-06-09 11:42:45 +02:00
* version 0.11
2017-06-09 08:50:18 +02:00
2017-06-09 05:11:18 +02:00
### Linter for new syntax tldr source files
```
2017-06-09 05:20:10 +02:00
Usage: tldr-lint [-h|--help] [-V|--version] [-q|--quiet] [<dir>] [<file>]
2017-06-09 05:11:18 +02:00
- All *.md files under <dir> and subdirectories are checked
- <file> is checked regardless of extension
2017-06-09 05:20:10 +02:00
-q, --quiet: No output means check is OK
-V, --version: Display version
-h, --help: Display this help text
2017-06-09 05:11:18 +02:00
```
2017-11-29 15:17:43 +01:00
<img alt="tldr markdown screenshot" src="tldr-markdown.jpg" title="tldr markdown" width="600" />
2017-06-09 05:11:18 +02:00
### Prerequisites
coreutils, sed, grep, find
2017-11-29 15:17:43 +01:00
# Contributing
2016-01-04 06:33:47 +01:00
Please file an issue for a question, a bug or a feature request.
Or even better, send a pull request!
2016-01-04 06:33:47 +01:00
[tldr-bash-client gitlab page](https://gitlab.com/pepa65/tldr-bash-client "gitlab.com/pepa65/tldr-bash-client")
### License
Original tldr client in bash by Ray Lee https://github.com/raylee/tldr (MIT license)
2017-11-29 15:17:43 +01:00
The **tldr-bash-client** is relicensed under GPLv3+ and **tldr-lint** is GPLv3+ as well.