共计 693 个字符,预计需要花费 2 分钟才能阅读完成。
对于程序员来说,长时间不使用某些命令难免会有生疏,此时如果使用 man 命令可能会让你崩溃,因为文档实在是 Too Looooong。那么有没有解决方案呢?其中比较有名的就是 tldr。
▍tldr 是什么
(chiefly Internet slang) Initialism of too long; didn’t read. Used to indicate that one did not read a (long) text, or to introduce a short summary of an overly long text.
— wiki
tldr=Too Long; Didn’t Read,它简化了烦琐的 man 指令帮助文档,仅列出常用的该指令的使用方法。相比较 man 给出完整的帮助文档而言,大多数情况下,给出几个指令的使用 demo 可能正是我们想要的。举个例子:
这是使用 man python 查询 python 的结果:
这是使用 tldr python 查看 python 常用命令的方法:
可以看到,tldr 更加亲民一些。如果你是一个命令行新手,或者长时间不用命令行有些生疏,或者有些指令晦涩难记,那么 tldr 非常适合你,可以大大提高生产力!
▍tldr 如何安装
可以使用不同的客户端来进行安装,以下仅列出常用的安装方法
Node.js client: npm install -g tldr
Python clients: pip install tldr
如果使用的 Mac,可以直接 brew install tldr
进行安装。
当然,除了 tldr 还有其他的解决方案
https://github.com/srsudar/eg
https://github.com/cheat/cheat
以上!
正文完
发表至: linux
2019-09-16