Many newbies coming from other operating systems don’t know that Linux systems come with a comprehensive, built-in manual—the so-called man pages. For any command, you can get its manual page by simply typing man command.
EOS also comes with tldr pre-installed. The name is an acronym for “Too Long; Didn’t Read.” It’s a community-driven effort to enrich the man pages with practical examples—and in your language, too. You can get the TL;DR page for a command by typing tldr command.
So, for any command, you basically get three levels of information:
command --help— shows whatcommandis about, and its possible command line parameter use. (Offline)man command— shows the manual page forcommand, a much more detailed explanation of its functionality and its parameters. (Offline)tldr command— shows practical everyday usage examples forcommand. (Online and offline)
Note that tldr will try to use the online page on first use, then cache it for later offline reuse. You can completely clear its cache using tldr --clear-cache. List of cached pages (available offline): tldr -l.
Here are some examples for the command tldr:
tldr --help — Help for tldr
man tldr — Manual page for tldr
tldr tldr — TL;DR page for tldr
tldr tldr — TL;DR page for tldr on a German system
Learning Linux makes using it more enjoyable every day. These tools can help you get along much faster.



