tldr/README.md

155 lines
7.2 KiB
Markdown
Raw Normal View History

<div align="center">
<h1><a href="https://tldr.sh/"><img alt="tldr-pages" src="images/banner.png" width=600/></a></h1>
2015-12-05 00:54:20 +00:00
2020-06-09 11:32:38 +01:00
[![Build status][github-actions-image]][github-actions-url]
[![Matrix chat][matrix-image]][matrix-url]
2016-09-29 20:51:04 +01:00
[![Merged PRs][prs-merged-image]][prs-merged-url]
[![GitHub contributors][contributors-image]][contributors-url]
[![license][license-image]][license-url]
2020-06-09 11:32:38 +01:00
[github-actions-url]: https://github.com/tldr-pages/tldr/actions
[github-actions-image]: https://img.shields.io/github/actions/workflow/status/tldr-pages/tldr/ci.yml?branch=main&label=Build
[matrix-url]: https://matrix.to/#/#tldr-pages:matrix.org
[matrix-image]: https://img.shields.io/matrix/tldr-pages:matrix.org?label=Chat+on+Matrix
2016-09-29 20:51:04 +01:00
[prs-merged-url]: https://github.com/tldr-pages/tldr/pulls?q=is:pr+is:merged
[prs-merged-image]: https://img.shields.io/github/issues-pr-closed-raw/tldr-pages/tldr.svg?label=Merged+PRs&color=green
2016-09-29 20:51:04 +01:00
[contributors-url]: https://github.com/tldr-pages/tldr/graphs/contributors
[contributors-image]: https://img.shields.io/github/contributors-anon/tldr-pages/tldr.svg?label=Contributors
[license-url]: https://github.com/tldr-pages/tldr/blob/main/LICENSE.md
[license-image]: https://img.shields.io/badge/license-CC_BY_4.0-blue.svg?label=License
</div>
## What is tldr-pages?
The **tldr-pages** project is a collection of community-maintained help pages
for command-line tools, that aims to be a simpler, more approachable complement
to traditional [man pages](https://en.wikipedia.org/wiki/Man_page).
2022-06-24 12:58:53 +01:00
Maybe you're new to the command-line world? Perhaps you're just a little rusty or can't always recall the arguments for commands like `lsof`, or `tar`?
It certainly doesn't help that, in the past, the first option explained in `man tar` was:
```console
$ man tar
...
-b blocksize
Specify the block size, in 512-byte records, for tape drive I/O.
As a rule, this argument is only needed when reading from or writing to tape drives,
and usually not even then as the default block size of 20 records (10240 bytes) is very common.
...
```
There seems to be room for simpler help pages, focused on practical examples.
How about:
![Screenshot of the tldr client displaying the tar command in light mode.](images/tldr-light.png#gh-light-mode-only)
![Screenshot of the tldr client displaying the tar command in dark mode.](images/tldr-dark.png#gh-dark-mode-only)
2016-05-10 14:38:11 +01:00
This repository is just that: an ever-growing collection of examples
2022-06-24 12:58:53 +01:00
for the most common UNIX, Linux, macOS, SunOS, Android and Windows command-line tools.
## How do I use it?
> [!TIP]
> For browsing without installing a client on your computer,
> see the web client at <https://tldr.inbrowser.app> (with offline support using PWA).
A popular and convenient way to access these pages on your computer
is to install the official [Node.js client](https://github.com/tldr-pages/tldr-node-client):
```shell
2022-06-24 12:58:53 +01:00
npm install -g tldr
```
Alternatively, you can also use the official [Python client](https://github.com/tldr-pages/tldr-python-client), which can be installed via [pip3](https://pypi.org/project/tldr/) (or [other package managers](https://github.com/tldr-pages/tldr-python-client#installation)):
```shell
2022-06-24 12:58:53 +01:00
pip3 install tldr
```
Linux and Mac users can also install the official [Rust Client](https://github.com/tldr-pages/tlrc) using [Homebrew](https://formulae.brew.sh/formula/tlrc) (or [other package managers](https://github.com/tldr-pages/tlrc#installation) on other operating systems):
2022-12-26 08:30:57 +00:00
```shell
brew install tlrc
2022-12-26 08:30:57 +00:00
```
2022-06-24 12:58:53 +01:00
Then you have direct access to simplified, easy-to-read help for commands, such as `tar`,
accessible through typing `tldr tar` instead of the standard `man tar`.
If you don't want to install any software, check out the [PDF version](https://github.com/tldr-pages/tldr/releases/latest/download/tldr-book.pdf) instead.
> [!NOTE]
> PDFs for translations are available for most languages. You can find them in the releases assets of the [latest release](https://github.com/tldr-pages/tldr/releases/latest).
2021-11-08 22:14:38 +00:00
There are also **various other clients** provided by the community,
both for the command-line and for other platforms.
For a comprehensive list of clients, head over to our [Wiki](https://github.com/tldr-pages/tldr/wiki/tldr-pages-clients).
2022-06-24 12:58:53 +01:00
## How do I contribute to tldr-pages?
2022-06-24 12:58:53 +01:00
All contributions are welcome!
2022-06-24 12:58:53 +01:00
Some ways to contribute include:
- Adding your favorite command which isn't covered.
- Adding examples or improving the content of an existing page.
- Adding requested pages from our issues with the [help wanted](https://github.com/tldr-pages/tldr/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22) label.
2022-06-24 12:58:53 +01:00
- Translating pages into different languages.
All `tldr` pages are written in markdown, so they can be edited quite easily and changes can be submitted in
pull requests here using Git on the command-line or
using the GitHub web interface.
We strive to maintain a [welcoming and collaborative](GOVERNANCE.md) community.
2022-06-24 12:58:53 +01:00
If it's your first time contributing, have a look at the [contributing guidelines](CONTRIBUTING.md), and go ahead!
If you'd like to contribute to translations, you can visit <https://lukwebsforge.github.io/tldri18n/>
2022-06-24 12:58:53 +01:00
to see the overall progress of all translations, and which translations are missing or outdated.
You are also welcome to join us on the [matrix chatroom](https://matrix.to/#/#tldr-pages:matrix.org)!
## Similar projects
- [Command Line Interface Pages](https://github.com/command-line-interface-pages)
allows you to write standardized help pages for CLI, directories and configs.
2021-11-30 18:48:39 +00:00
- [Cheat](https://github.com/cheat/cheat)
allows you to create and view interactive cheatsheets on the command-line.
It was designed to help remind *nix system administrators of options
for commands that they use frequently, but not frequently enough to remember.
2021-11-30 18:48:39 +00:00
- [cheat.sh](https://cheat.sh/)
Aggregates cheat sheets from multiple sources (including tldr-pages)
into 1 unified interface.
- [devhints](https://devhints.io/)
Rico's cheatsheets are not just focused on the command-line and
2020-10-28 18:04:33 +00:00
include a plethora of other cheatsheets related to programming.
2021-11-30 18:48:39 +00:00
- [eg](https://github.com/srsudar/eg)
provides detailed examples with explanations on the command-line.
Examples come from the repository, but `eg` supports displaying
custom examples and commands alongside the defaults.
- [kb](https://github.com/gnebbia/kb)
is a minimalist command-line knowledge base manager.
kb can be used to organize your notes and cheatsheets in a minimalist
and clean way. It also supports non-text files.
- [navi](https://github.com/denisidoro/navi)
is an interactive cheatsheet tool, which allows you to browse through
specific examples or complete commands on the fly.
2022-05-28 04:35:07 +01:00
- [bropages (deprecated)](http://bropages.org)
are a highly readable supplement to man pages.
It shows concise, common-case examples for Unix commands.
The examples are submitted by the user base, and can be voted up or down;
the best entries are what people see first when they look up a command.
2016-05-10 14:38:11 +01:00
## What does "tldr" mean?
TL;DR stands for "Too Long; Didn't Read".
2021-11-05 07:09:28 +00:00
It originated as Internet slang, where it is used to indicate that a long text
(or parts of it) has been skipped as too lengthy.
Read more in How-To Geek's [article](https://www.howtogeek.com/435266/what-does-tldr-mean-and-how-do-you-use-it/).