码迷,mamicode.com
首页 > 系统相关 > 详细

linux中使用cheat工具掌握系统命令使用方法

时间:2014-09-09 16:21:03      阅读:304      评论:0      收藏:0      [点我收藏+]

标签:命令   linux   python   cheat   

      cheat工具是一款非常适合linux系统管理员的一款工具,他能帮助你很简单快捷的熟悉linux下系统命令的使用方法,如下图:
bubuko.com,布布扣

  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中使用cheat工具掌握系统命令使用方法

标签:命令   linux   python   cheat   

原文地址:http://jemary.blog.51cto.com/2146209/1550232

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!