Linux命令小抄大全cheat命令安装

转载地址:http://jingyan.baidu.com/article/e6c8503c046ecce54f1a18ed.html

cheat命令一改Linux的man、help、whereis、whatis等命令繁复的英文说明手册,改为明朗的命令实例,受到不少Linux社区朋友的好评。

工具/原料
yum
pip
方法/步骤
1
安装python;
yum -y install python
2
安装pip;
yum -y install python-pip
3
安装git;
yum -y install git
4
安装Python依赖的文件;
pip install docopt pygments
5
从github克隆项目到本地;
git clone https://github.com/chrisallenlane/cheat.git
6
切换到cheat目录,安装cheat;
cd cheat/python setup.py install
7
安装成功之后可以使用cheat -v查看版本号;
cheat -v
8
试一下效果吧,
cheat dd
cheat tar
END
注意事项
克隆项目的过程中如果发生错误可以检查网络状况重新执行一次命令尝试。

你可能感兴趣的:(Ubuntu)