TIL: TLDR

Other than reading man pages, tldr command shows the most common usages of a given terminal command.

1
brew install tldr

This is an example output for the hexo command. (That’s how I create my blog posts.)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
$> tldr hexo
✔ Page not found. Updating cache...
✔ Creating index...

hexo

A fast, simple & powerful blog framework.
More information: https://hexo.io/.

- Initialize a website:
hexo init path/to/directory

- Create a new article:
hexo new layout title

- Generate static files:
hexo generate

- Start a local server:
hexo server

- Deploy the website:
hexo deploy

- Clean the cache file (db.json) and generated files (public/):
hexo clean

<- Back to all TILs