TranslateProject/translated/tech/20171207 Cheat – A Collection Of Practical Linux Command Examples.md
2017-12-21 08:50:06 +08:00

4.7 KiB
Raw Blame History

Cheat - 一个实用 Linux 命令示例集合

我们中的许多人经常查看 man 页面 来了解命令开关(选项),它会显示有关命令语法、说明、细节和可用的选项,但它没有任何实际的例子。因此,在组合成一个完整的我们需要的命令时会遇到一些麻烦。

你确实遇到这个麻烦而想要一个更好的解决方案吗?我会建议你试一下 cheat。

Cheat 是什么

cheat 允许你在命令行中创建和查看交互式 cheatsheet。它旨在帮助提醒 *nix 系统管理员 他们经常使用但还没频繁到会记住的命令的选项。

如何安装 Cheat

cheat 是使用 python 开发的,所以用 pip 来在你的系统上安装 cheat。

对于 Debian/Ubuntu 用户,请使用 apt-get 命令 apt 命令来安装 pip。


    [对于 Python2]
    
    
    $ sudo apt install python-pip python-setuptools
    
    
    
    [对于 Python3]
    
    
    $ sudo apt install python3-pip
    

RHEL/CentOS 官方仓库中没有 pip因此使用 EPEL 仓库,并使用 YUM 命令安装 pip。


    $ sudo yum install python-pip python-devel python-setuptools
    

对于 Fedora 系统,使用 dnf 命令来安装 pip。


     [对于 Python2]
    
    
    $ sudo dnf install python-pip
    
    
    
    [对于 Python3]
    
    
    $ sudo dnf install python3
    

对于基于 Arch Linux 的系统,请使用 Pacman 命令 来安装 pip。


     [对于 Python2]
    
    
    $ sudo pacman -S python2-pip python-setuptools
    
    
    
    [对于 Python3]
    
    
    $ sudo pacman -S python-pip python3-setuptools
    

对于 openSUSE 系统,使用 Zypper 命令来安装 pip。


     [对于 Python2]
    
    
    $ sudo pacman -S python-pip
    
    
    
    [对于 Python3]
    
    
    $ sudo pacman -S python3-pip
    

pip 是一个与 setuptools 捆绑在一起的 Python 模块,它是在 Linux 中安装 Python 包推荐的工具之一。


    $ sudo pip install cheat
    

如何使用 Cheat

运行 cheat,然后按相应的命令来查看 cheatsheet作为例子我们要来看下 tar 命令的例子。


    $ cheat tar
    # To extract an uncompressed archive:
    tar -xvf /path/to/foo.tar
    
    # To create an uncompressed archive:
    tar -cvf /path/to/foo.tar /path/to/foo/
    
    # To extract a .gz archive:
    tar -xzvf /path/to/foo.tgz
    
    # To create a .gz archive:
    tar -czvf /path/to/foo.tgz /path/to/foo/
    
    # To list the content of an .gz archive:
    tar -ztvf /path/to/foo.tgz
    
    # To extract a .bz2 archive:
    tar -xjvf /path/to/foo.tgz
    
    # To create a .bz2 archive:
    tar -cjvf /path/to/foo.tgz /path/to/foo/
    
    # To extract a .tar in specified Directory:
    tar -xvf /path/to/foo.tar -C /path/to/destination/
    
    # To list the content of an .bz2 archive:
    tar -jtvf /path/to/foo.tgz
    
    # To create a .gz archive and exclude all jpg,gif,... from the tgz
    tar czvf /path/to/foo.tgz --exclude=\*.{jpg,gif,png,wmv,flv,tar.gz,zip} /path/to/foo/
    
    # To use parallel (multi-threaded) implementation of compression algorithms:
    tar -z ... -> tar -Ipigz ...
    tar -j ... -> tar -Ipbzip2 ...
    tar -J ... -> tar -Ipixz ...
    

运行下面的命令查看可用的 cheatsheet。


    $ cheat -l
    

进入帮助页面获取更多详细信息。


    $ cheat -h
    

via: https://www.2daygeek.com/cheat-a-collection-of-practical-linux-command-examples/

作者:Magesh Maruthamuthu 译者:geekpi 校对:校对者ID

本文由 LCTT 原创编译,Linux中国 荣誉推出