cheat工具是一款非常适合Linux系统管理员的一款工具,他能帮助你很简单快捷的熟悉Linux下系统命令的使用方法,如下图:
cheat的安装很简单:
cheat有两个依赖工具 python和 pip,所以在安装cheat之前,需要安装python和pip。
# yum install python
# yum install python-pip
通过git下载cheat:
# apt-get install git
然后安装python的依赖:
# pip install docopt pygments
从git库中克隆cheat:
# git clone https://github.com/chrisallenlane/cheat.git
进入cheat目录,运行setup.py
# cd cheat
# python setup.py install
安装完成OK,可以查看cheat版本
# cheat -v
cheat 2.1.0
cheat的一些其他配置:
需要在~/.bashrc配置一个默认的文本编辑器
# export EDITOR = /usr/bin/vi
这个文本编辑器可以根据自己的喜好设定,可以设定其他的,比如nano
如果你需要cheat的自动补齐功能,可以这样去git上复制cheat.bash这个脚本:
# wget https://github.com/chrisallenlane/cheat/raw/master/cheat/autocompletion/cheat.bash^C
# mv cheat.bash /etc/bash_completion.d/
cheat还可以根据自己的需要自定义命令的帮助文件,自定义目录默认在~/.cheat/目录下,我们先来看下cheat自带的命令帮助文件的目录:
# cheat -d
/root/.cheat
/usr/lib/python2.7/site-packages/cheat/cheatsheets
# cp /usr/lib/python2.7/site-packages/cheat/cheatsheets/* /root/.cheat/
我们可以将/usr/lib/python2.7/site-packages/cheat/cheatsheets下的所有文件都拷贝到/root/.cheat下,你也可以根据自己的需要建立自己的其他命令帮助备忘录文件。
这样cheat工具就安装完成了,对于以后遇到命令不记得怎么使用便可以好好利用它了。
Linux命令之cd http://www.linuxidc.com/Linux/2013-05/83948.htm
Linux命令之cat http://www.linuxidc.com/Linux/2013-05/83947.htm
Linux命令之alias/unalias http://www.linuxidc.com/Linux/2013-05/83946.htm
Linux命令解析:su root和su -root http://www.linuxidc.com/Linux/2013-04/82564.htm
Linux命令之 交互式输入read http://www.linuxidc.com/Linux/2013-03/81594.htm
本文永久更新链接地址:http://www.linuxidc.com/Linux/2014-09/106435.htm