TranslateProject/published/201409/20140804 Cheat--An Ultimate Command Line 'Cheat-Sheet' for Linux Beginners and Administrators.md

176 lines
7.8 KiB
Markdown
Raw Normal View History

2014-09-04 22:49:19 +08:00
Cheat—— 给Linux初学者和管理员一个终极命令行备忘单
2014-08-06 14:14:47 +08:00
==============================================================================================
2014-09-04 22:49:19 +08:00
当你不确定你所运行的命令尤其是那些使用了许多选项的复杂命令时你会怎么做在这种情况下我们使用man pages来获取帮助。还有一些其它的选择可能包括像**help****whereis**’和‘**whatis**’这样的命令。但是所有的这些既有优点,也有缺点。
当我们浏览**man pages**来查看选项和帮助的时候,里面的描述实在太冗长了,我们无法在短的时间里理解它的意思。
2014-08-06 14:14:47 +08:00
![Linux Man Pages](http://www.tecmint.com/wp-content/uploads/2014/07/Linux-Man-Pages.jpeg)
Linux Man Pages
2014-09-04 22:49:19 +08:00
同样,‘**help**’命令可能也不会给你期待的答案。
2014-08-06 14:14:47 +08:00
![Help Command](http://www.tecmint.com/wp-content/uploads/2014/07/help-command.jpeg)
Help Command
2014-09-04 22:49:19 +08:00
**whereis**’命令几乎不给你任何信息,除了安装二进制文件的位置(有些时候可能是重要的)
2014-08-06 14:14:47 +08:00
![Whereis Command](http://www.tecmint.com/wp-content/uploads/2014/07/whereis-command.jpeg)
Whereis Command
2014-09-04 22:49:19 +08:00
**whatis**’命令给出一套很严格的答案,它除了说出所查询命令的作用,并没有什么太大帮助。而且,它从来不说明可用的选项。
2014-08-06 14:14:47 +08:00
![Whatis Command](http://www.tecmint.com/wp-content/uploads/2014/07/whatis-command.jpeg)
Whatis Command
2014-09-04 22:49:19 +08:00
直到在困难中解决问题前,我们已经使用了以上全部选项,但是现在来了一个交互式的备忘录应用程序‘**cheat**’,它将在其余的命令中脱颖而出。
2014-08-06 14:14:47 +08:00
### 什么是cheat? ###
2014-09-04 22:49:19 +08:00
**cheat**是在GNU通用公共许可证下为Linux命令行用户发行的交互式备忘单应用程序。它提供显示Linux命令使用案例包括该命令所有的选项和简短但尚可理解的功能。
2014-08-06 14:14:47 +08:00
![Cheat: Provides Easy Command Options](http://www.tecmint.com/wp-content/uploads/2014/07/cheat-sheet.jpeg)
Cheat提供简单命令选项
### 在Linux系统中安装Cheat ###
2014-09-04 22:49:19 +08:00
**Cheat**’有两个主要的依赖——‘**python****pip**’,在安装‘**cheat**之前确保你的系统安装了python和pip。
2014-08-06 14:14:47 +08:00
### Install Python ###
# apt-get install Python (基于Debian的系统)
# yum install python (基于小红帽的系统)
Install Pip
# apt-get install python-pip (基于Debian的系统)
# yum install python-pip (基于小红帽的系统)
2014-09-04 22:49:19 +08:00
**Note**pip是一个简单的安装替代是一个有极大改进的Python第三方包安装器。
2014-08-06 14:14:47 +08:00
### 下载并安装Cheat ###
2014-09-04 22:49:19 +08:00
我们将通过Git下载Cheat确保你安装了git如果没有最好安装一下。
2014-08-06 14:14:47 +08:00
# apt-get install git (基于Debian的系统)
# yum install git (基于小红帽的系统)
2014-09-04 22:49:19 +08:00
接下来通过运行下面的命令来安装所需要的python依赖包。
2014-08-06 14:14:47 +08:00
# pip install docopt pygments
2014-09-04 22:49:19 +08:00
现在复制cheat的[Git库][1]
2014-08-06 14:14:47 +08:00
# git clone https://github.com/chrisallenlane/cheat.git
2014-09-04 22:49:19 +08:00
进入cheat目录运行**setup.py**一个python脚本
2014-08-06 14:14:47 +08:00
# cd cheat
# python setup.py install
2014-09-04 22:49:19 +08:00
如果安装很顺利你就能够看到安装在系统上的cheat版本了。
2014-08-06 14:14:47 +08:00
# cheat -v
cheat 2.0.9
### cheat的一些必要配置 ###
你必须在‘~/.bashrc文件里设置**EDITOR**’环境变量,打开用户‘**.bashrc**’文件,然后把下面这行加入到里面:
export EDITOR = /usr/bin/nano
2014-09-04 22:49:19 +08:00
你可以使用你喜欢的编辑器来替代‘**nano**’。保存文件然后退出,再次登录以确保修改生效。
2014-08-06 14:14:47 +08:00
2014-09-04 22:49:19 +08:00
接下来添加cheat的自动补全特性来确保不同解释器下命令行的自动补全。为了到达该功能要求简单地将**cheat.bash**脚本clone下来然后复制到你系统正确的路径下。
2014-08-06 14:14:47 +08:00
# wget https://github.com/chrisallenlane/cheat/raw/master/cheat/autocompletion/cheat.bash
# mv cheat.bash /etc/bash_completion.d/
**NOTE**团队已经在Git上上传了其他解释器的自动补全脚本这些都可以被克隆然后用在不同的解释器上。使用下面的链接以找到其余解释器的自动补全脚本
- [Auto Completion Script for Various Shells][2]
2014-09-04 22:49:19 +08:00
不仅如此,如果需要的话,你也可以使用语法高亮。要想做到这一点,在你的‘**.bashrc**’文件中添加‘**CHEATCOLORS**’环境变量。
2014-08-06 14:14:47 +08:00
export CHEATCOLOR=true
2014-09-04 22:49:19 +08:00
Cheat应用默认只提供最基本和最常用的命令。cheat备忘单的内容保存在**~/.cheat/.**目录里我们可以手动在这个目录添加备忘单里面的内容这样我们的cheat应用将更强大。
2014-08-06 14:14:47 +08:00
# cheat -xyz
2014-09-04 22:49:19 +08:00
这将打开xyz备忘单如果没有的话就会创建一个。备忘单将使用**.bashrc**里设置的默认**编辑器**打开,默认编辑器就是在上面**.bashrc**所设置的。
2014-08-06 14:14:47 +08:00
### 一些Cheat命令的使用 ###
一个包可以是 *.gz , *.bz2 , *.zip , *.xz可是什么情况下用哪些选项呢
![tar command options](http://www.tecmint.com/wp-content/uploads/2014/07/cheat-tar.jpeg)
tar命令选项
2014-09-04 22:49:19 +08:00
除非在不同的地方咨询和核对后,我才使用**dd**命令,在此之前,无论我对这个命令多么的肯定,我从不使用它。现在,事情就变得简单多了。
2014-08-06 14:14:47 +08:00
![dd command options](http://www.tecmint.com/wp-content/uploads/2014/07/cheat-dd.jpeg)
dd命令选项
**uname**’命令帮助
![uname command options](http://www.tecmint.com/wp-content/uploads/2014/07/uname-command.jpeg)
uname命令选择
一个简短的**ifconfig**命令操作教程
![ifconfig command options](http://www.tecmint.com/wp-content/uploads/2014/07/ifconfig-command.jpeg)
ifconfig命令选项
2014-09-04 22:49:19 +08:00
top命令对管理员和普通用户来说是最重要的命令之一。
2014-08-06 14:14:47 +08:00
![top command options](http://www.tecmint.com/wp-content/uploads/2014/07/top-command.jpeg)
top命令选项
2014-09-04 22:49:19 +08:00
我们来骗骗cheat命令如何尽管别有意义得到一个可用命令的列表其实就是安装在你系统里的cheat备忘录。
2014-08-06 14:14:47 +08:00
![List All Linux Commands](http://www.tecmint.com/wp-content/uploads/2014/07/linux-commands.jpeg)
列出所有Linux命令
2014-09-04 22:49:19 +08:00
使用关键字搜索备忘单。
2014-08-06 14:14:47 +08:00
![Search Cheat Sheet](http://www.tecmint.com/wp-content/uploads/2014/07/search-cheat-sheet.jpeg)
搜索备忘单
2014-09-04 22:49:19 +08:00
来看看包含所有命令的内置备忘单。
2014-08-06 14:14:47 +08:00
$ cheat -d
/home/avi/.cheat
/usr/local/lib/python2.7/dist-packages/cheat/cheatsheets
2014-09-04 22:49:19 +08:00
复制内置的备忘单到你的本地目录。
2014-08-06 14:14:47 +08:00
# cp /usr/local/lib/python2.7/dist-packages/cheat/cheatsheets/* /home/avi/.cheat/
### 结论 ###
2014-09-04 22:49:19 +08:00
这个超棒的工具在许多情况下担任“救世主”的角色,它给予你需要的信息,信息不冗余,不模糊,相反地,却击中要点。这是每个人都会需要的工具,很简单就能创建、安装,使用和理解,这个工具前途无量。
2014-08-06 14:14:47 +08:00
2014-09-04 22:49:19 +08:00
这个Git仓库已经添加了一个精彩的**gag**,这里我不打算去解释它,而留给各位来解释。
2014-08-06 14:14:47 +08:00
![Linux Gag](http://www.tecmint.com/wp-content/uploads/2014/07/linux-gag.jpeg)
Linux Gag
2014-09-04 22:49:19 +08:00
好了,文章就要结束了,我会带着下一篇你们喜欢的有趣文章回到这里的,在此之前,要时刻关注我们。别忘了在下面的评论部分给我们留下您宝贵的反馈信息。
2014-08-06 14:14:47 +08:00
-------------------------------------------------------------------------------------------------------------------------------
via: http://www.tecmint.com/cheat-command-line-cheat-sheet-for-linux-users/
作者:[Avishek Kumar][a]
译者:[su-kaiyao](https://github.com/su-kaiyao)
2014-09-04 22:49:19 +08:00
校对:[Caroline](https://github.com/carolinewuyan)
2014-08-06 14:14:47 +08:00
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出
[a]:http://www.tecmint.com/author/avishek/
[1]:http://www.tecmint.com/install-git-to-create-and-share-your-own-projects-on-github-repository/
[2]:https://github.com/chrisallenlane/cheat/tree/master/cheat/autocompletion