作为码农免不了要用用命令行。用惯了linux下的终端,再用window下的cmd,绝对会让人感到生不如死:复制、粘贴方式极其脑残,不能<Ctrl-U>删除一整行,不能<Alt-.>补全上次命令的最后参数,不能……
这时有两个选择:一是装个类似于cygwin这样的模拟环境,二就是使用这次要介绍的神器——clink。
项目地址: https://code.google.com/p/clink/
使用方法很简单,直接下载安装即可,也就不多说了。
Features Powerful Bash-like line editing from GNU’s Readline library. Read more on Readline’s keyboard shortcuts.
Superior path completion (TAB).
Paste from clipboard (Ctrl-V).
Support for the completion of executables/commands, and environment variables.
Undo/Redo (Ctrl-_ or Ctrl-X, Ctrl-U)
Improved command line history.
Persists across sessions.
Searchable (Ctrl-R and Ctrl-S).
History expansion (e.g. !!, !, and !
阅读全文