cheat 允许你在命令行中创建和查看交互式的速查表cheatsheet。它能帮助提醒 linux 系统管理员他们经常使用但还没频繁到会记住的命令的选项。cheat 是使用 python 开发的,所以可以用 pip 来在你的系统上安装 cheat。pip 是一个与 setuptools 捆绑在一起的 Python 模块,它是在 Linux 中安装 Python 包推荐的工具之一。
1、安装python
yum -y install python
2、安装epel源、安装pip
yum install epel-release -y
yum install python-pip -y
3、安装git
yum -y install git
4、安装Python依赖的文件
pip install docopt pygments
5、从github克隆项目到本地
cd /usr/local/src
git clone https://github.com/chrisallenlane/cheat.git
6、切换到cheat目录,安装cheat
cd cheat
python setup.py install
7、查看版本号
cheat -v
8、查看所有可用的cheat命令
cheat -l
9、使用cheat
cheat tar
cheat zip
cheat yum
。。。。。。