Translated by qhwdw

Translated by qhwdw
This commit is contained in:
qhwdw 2017-11-08 11:40:28 +08:00 committed by GitHub
parent 620b9380ec
commit 7b4c7d5e40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,177 @@
使用命令行瞬间提升生产力 100%
============================================================
生产力的话题总是让人充满兴趣的。
这里有许多方式去提升你的生产力。今天,我共享一些命令行的小贴士,和让你的人生更轻松的小秘诀。
### TLDR
在本文中讨论的内容的全部设置及更多的信息,去查看: [https://github.com/sobolevn/dotfiles][9]
### Shell
它是非常好用的,很有帮助的,并且一个稳定的 shell 对你的命令行生产力是非常关键的。这儿有很多选择,我喜欢 `zsh` 和 `oh-my-zsh`。它是非常神奇的,理由如下:
* 自动完成几乎所有的东西
* 大量的插件
* 实时的帮助和定制化的 `提示符`
你可以通过下列的步骤去安装它:
1. 安装 `zsh`: [https://github.com/robbyrussell/oh-my-zsh/wiki/Installing-ZSH][1]
2. 安装 `oh-my-zsh`: [http://ohmyz.sh/][2]
3. 选择对你有用的插件: [https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins][3]
你也可以去 [关闭自动完成的大小写敏感][10] 调整你的设置。或改变你的 [工作历史][11]。
就是这样。你将获得 50% 以上的生产力提升。现在尽可能多的点击选项卡tab
### 主题
选择主题也很重要,因为你一直在看着它。它是功能化的而且还很漂亮。我也喜欢简约的主题,因为它不包含一些视觉噪音和没用的信息。
你的主题将为你展示:
* 当前文件夹
* 当前分支
* 当前库状态clean 或 dirty
* 任何的错误代码(如果有)
我也喜欢我的主题在新行上有新命令,这样就有足够的空间去读和写。
我个人使用 [`sobole`][12]。它看起来非常棒,它有两种模式。
明亮的:
[![sobole.zsh-theme](https://res.cloudinary.com/practicaldev/image/fetch/s--Lz_uthoR--/c_limit,f_auto,fl_progressive,q_auto,w_880/https://raw.githubusercontent.com/sobolevn/sobole-zsh-theme/master/showcases/env-and-user.png)][13]
和黑的:
[![sobole.zsh-theme](https://res.cloudinary.com/practicaldev/image/fetch/s--4o6hZwL9--/c_limit,f_auto,fl_progressive,q_auto,w_880/https://raw.githubusercontent.com/sobolevn/sobole-zsh-theme/master/showcases/dark-mode.png)][14]
一个看起来很漂亮的主题,你可以得到另外的 15% 的提升。
### 语法高亮
对我来说,有足够的可视信息从我的 shell 中做一个正确的判断是非常重要的。就像 “这个命令有没有拼写错误?” 或者 “这个命令有相应的作用域吗?” 和时刻注意到拼写错误。
因此, [`zsh-语法高亮`][15] 对我是非常有用的。 它有合适的默认值,但是,你可以 [改变任何你想要的][16]。
这些步骤给我们带来额外的 5% 的提升。
### 文件处理
我在我的目录中经常遍历许多像  _a lot_ 的文件,并且经常做这些事情:
* 向前向后导航
* 列出文件和目录
* 打印文件内容
我喜欢去使用 [`z`][17] 导航到我准备去使用的文件夹。这个工具是非常好的。 我使用 'frecency' 方法去转到你的 `.dot TAB` 进入 `~/dev/shell/config/.dotfiles`。真的很不错!
当你打印文件时,你通常会考虑如下几件事情:
* 文件名
* 权限
* 所有者
* 这个文件的 git 状态
* 修改日期
* 人类可读形式的文件大小
你也或许希望隐藏文件缺省展示出来。因此,我使用 [`exa`][18] 作为标准的 `ls` 的代替。为什么呢?因为它缺省启用了很多的东西:
[![exa](https://res.cloudinary.com/practicaldev/image/fetch/s--n_YCO9Hj--/c_limit,f_auto,fl_progressive,q_auto,w_880/https://raw.githubusercontent.com/ogham/exa/master/screenshots.png)][19]
去打印文件内容,我使用标准的 `cat`,或者,如果我希望看到语法高亮,我使用一个定制的别名:
```
# exa:
alias la="exa -abghl --git --color=automatic"
# `cat` with beautiful colors. requires: pip install -U Pygments
alias c='pygmentize -O style=borland -f console256 -g'
```
现在,你已经掌握了导航。它使你的生产力提升 15% 。
### 搜索
当你在你的应用程序中搜索一个源代码时,不想在你的搜索结果中缺省包含像 `node_modules` 或 `bower_components` 这样的文件夹时。或者,你想搜索执行的更快更流畅时。
这里有一个比内置的搜索方式更好的替代: [`the_silver_searcher`][20].
它是用纯粹的 `C` 写成的,并且使用了很多智能化的逻辑让它工作的更快。
在 `history` 中,对于 [反向搜索][21] 使用 `ctrl` + `R` 是非常有用的。但是,你有没有发现你自己是否可以完全记住一个命令呢?如果有一个工具可以让搜索变得更好,从而使搜索可以更加模糊,用户界面更好,那会怎么样呢?
这里确实有这样一个工具。它叫做 `fzf`
[![fzf](https://res.cloudinary.com/practicaldev/image/fetch/s--hykHvwjq--/c_limit,f_auto,fl_progressive,q_auto,w_880/https://thepracticaldev.s3.amazonaws.com/i/erts5tffgo5i0rpi8q3r.png)][22]
它可以被用于任何模糊查询,而不仅是在历史中,但它需要 [一些配置][23]。
你现在有一个搜索工具,可以额外提升 15% 的生产力。
### 进一步阅读
更好地使用命令行: [https://dev.to/sobolevn/using-better-clis-6o8][24]
### 结论
通过这些简单的步骤,你可以显著提升你的命令行的生产力 100% 以上(数字是估计的)。
这里还有其它的工具,我将在下一篇文章中介绍。
你喜欢阅读软件开发方面的最新趋势吗?在这里订阅我们的愽客吧 [https://medium.com/wemake-services][25]
--------------------------------------------------------------------------------
via: https://dev.to/sobolevn/instant-100-command-line-productivity-boost
作者:[Nikita Sobolev ][a]
译者:[qhwdw](https://github.com/qhwdw)
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]:https://dev.to/sobolevn
[1]:https://github.com/robbyrussell/oh-my-zsh/wiki/Installing-ZSH
[2]:http://ohmyz.sh/
[3]:https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins
[4]:https://dev.to/sobolevn
[5]:http://github.com/sobolevn
[6]:https://dev.to/t/commandline
[7]:https://dev.to/t/dotfiles
[8]:https://dev.to/t/productivity
[9]:https://github.com/sobolevn/dotfiles
[10]:https://github.com/sobolevn/dotfiles/blob/master/zshrc#L12
[11]:https://github.com/sobolevn/dotfiles/blob/master/zshrc#L24
[12]:https://github.com/sobolevn/sobole-zsh-theme
[13]:https://res.cloudinary.com/practicaldev/image/fetch/s--Lz_uthoR--/c_limit,f_auto,fl_progressive,q_auto,w_880/https://raw.githubusercontent.com/sobolevn/sobole-zsh-theme/master/showcases/env-and-user.png
[14]:https://res.cloudinary.com/practicaldev/image/fetch/s--4o6hZwL9--/c_limit,f_auto,fl_progressive,q_auto,w_880/https://raw.githubusercontent.com/sobolevn/sobole-zsh-theme/master/showcases/dark-mode.png
[15]:https://github.com/zsh-users/zsh-syntax-highlighting
[16]:https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/docs/highlighters.md
[17]:https://github.com/rupa/z
[18]:https://github.com/ogham/exa
[19]:https://res.cloudinary.com/practicaldev/image/fetch/s--n_YCO9Hj--/c_limit,f_auto,fl_progressive,q_auto,w_880/https://raw.githubusercontent.com/ogham/exa/master/screenshots.png
[20]:https://github.com/ggreer/the_silver_searcher
[21]:https://unix.stackexchange.com/questions/73498/how-to-cycle-through-reverse-i-search-in-bash
[22]:https://res.cloudinary.com/practicaldev/image/fetch/s--hykHvwjq--/c_limit,f_auto,fl_progressive,q_auto,w_880/https://thepracticaldev.s3.amazonaws.com/i/erts5tffgo5i0rpi8q3r.png
[23]:https://github.com/sobolevn/dotfiles/blob/master/shell/.external#L19
[24]:https://dev.to/sobolevn/using-better-clis-6o8
[25]:https://medium.com/wemake-services