大家好,今天周二,还是和往常一样,没有精神,每天坐在电脑前一坐就是一天,感觉身体也是一天不如一天了,不说这些,今天说一下Linux命令cheat, cheat 允许你在命令行中创建和查看交互式的速查表cheatsheet。它能帮助提醒 *nix 系统管理员他们经常使用但还没频繁到会记住的命令的选项,raksmart服务器。
一:安装 Cheat
cheat 是使用 python 开发的,所以可以用 pip 来在你的系统上安装 cheat。
pip 是一个与 setuptools 捆绑在一起的 Python 模块,它是在 Linux 中安装 Python 包推荐的工具之一。
对于 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。
$ sudoyum 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 来在你的系统上安装 cheat。
$ sudo pip install cheat
二:使用 Cheat
运行 cheat,然后按相应的命令来查看速查表,作为例子,我们要来看下 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/
#Tolist 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 .tarin specified Directory:
tar-xvf /path/to/foo.tar-C /path/to/destination/
#Tolist 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=*./path/to/foo/
#Touse parallel (multi-threaded) implementation of compression algorithms:
tar-z ...->tar-Ipigz...
tar-j ...->tar-Ipbzip2...
tar-J ...->tar-Ipixz...
运行下面的命令查看可用的速查表。
$ cheat -l
进入帮助页面获取更多详细信息。
$ cheat –h
好了,以上就是安装和使用命令cheat的方法,希望对大家有所帮助,明天见。
领取专属 10元无门槛券
私享最新 技术干货