当前位置:   article > 正文

Linux 命令总记不住?一招帮你搞定!_记不住linux命令

记不住linux命令

作者: 一去、二三里
个人微信号: iwaleon
微信公众号: 高效程序员

对于 Linux 用户来说,man 应该是最常用的命令之一了,它主要用于显示某个命令/实用程序的详细说明,通常被称为“手册页”

虽然 man 很强大,但却时常会让人崩溃,满屏的选项和解释,简直是又臭又长。为了解决这一问题,tldr 应运而生了。

Life is short, You need tldr

tldr 是『Too Long; Didn't Read』的缩写,形容太长而不值得一读的意思(这不就是指的 man 吗)。它简化了烦琐的 man 帮助文档,仅列出了 Linux 命令中最常用的一些用法,简洁清晰、自然易懂。

安装 tldr

tldr 有多种语言(例如:Python、Go、Node.js 等)编写的客户端,但据官网所述,目前最成熟的客户端是基于 Node.js 的,可以使用 npm 包管理器轻松地安装它。

如果之前没有安装过 nodejs 和 npm,需要先进行安装:

  1. $ sudo apt install nodejs
  2. $ sudo apt install npm

为了方便后续快速下载,更新一下 npm 的包镜像源:

$ sudo npm config set registry https://registry.npm.taobao.org

全局安装 n 管理器,并升级 nodejs 为最新稳定版:

  1. $ sudo npm install -g n
  2. $ sudo n stable

随后,就可以安装 tldr 客户端了:

$ sudo npm install -g tldr 

一旦安装完成,最好在使用之前更新下缓存:

$ tldr --update 

基本用法

tldr 的使用非常简单,后面直接跟想要查询的命令就可以啦!

来看一个例子,显示 tar 命令的相关文档:

  1. $ tldr tar
  2. tar
  3. Archiving utility.Often combined with a compression method, such as gzip or bzip.More information: https://www.gnu.org/software/tar.
  4.  - Create an archive from files:
  5.    tar cf {{target.tar}} {{file1}} {{file2}} {{file3}}                                                                                                                   
  6.  - Create a gzipped archive:
  7.    tar czf {{target.tar.gz}} {{file1}} {{file2}} {{file3}}                                                                                                               
  8.  - Create a gzipped archive from a directory using relative paths:
  9.    tar czf {{target.tar.gz}} -C {{path/to/directory}} .                                                                                                                  
  10.  - Extract a (compressed) archive into the current directory:
  11.    tar xf {{source.tar[.gz|.bz2|.xz]}}                                                                                                                                   
  12.  - Extract a (compressed) archive into the target directory:
  13.    tar xf {{source.tar[.gz|.bz2|.xz]}} -C {{directory}}                                                                                                                  
  14.  - Create a compressed archive, using archive suffix to determine the compression program:
  15.    tar caf {{target.tar.xz}} {{file1}} {{file2}} {{file3}}                                                                                                               
  16.  - List the contents of a tar file:
  17.    tar tvf {{source.tar}}                                                                                                                                                
  18.  - Extract files matching a pattern:
  19.    tar xf {{source.tar}} --wildcards "{{*.html}}"                                                                                                                        
  20.  - Extract a specific file without preserving the folder structure:
  21.    tar xf {{source.tar}} {{source.tar/path/to/extract}} --strip-components={{depth_to_strip}}

怎么样,可以很容易地找到命令的具体用法吧!

如果要显示帮助页面,执行命令:

$ tldr --help

哈哈,绝对的神器,Cheers!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/130860
推荐阅读
相关标签
  

闽ICP备14008679号