windows下cmd替换工具cmder

官网地址

点击进入官网 进入官网后下载完全版。

安装步骤

  1. 下载完压缩包,将其解压到一个目录,并配置环境变量(在path中将cmder的路径添加进去)

  2. 添加鼠标右单击显示cmder here,管理员权限终端输入Cmder.exe /REGISTER

  3. λ替换为$
    编辑Cmder安装目录下的vendor/clink.lua43行左右替换为local lambda = "$"
    找到cmder_prompt_config.lua文件,通常在config这个目录下
    修改prompt_lambSymbol这个变量对应的值

  4. 配置alias
    修改config/user-aliases.cmd文件

     ;= @echo off
     ;= rem Call DOSKEY and use this file as the macrofile
     ;= %SystemRoot%\system32\doskey /listsize=1000 /macrofile=%0%
     ;= rem In batch mode, jump to the end of the file
     ;= goto:eof
     ;= Add aliases below here
     e.=explorer .
     gl=git log --oneline --all --graph --decorate  $*
     ls=ls --show-control-chars -F --color $*
     pwd=cd
     clear=cls
     history=cat "%CMDER_ROOT%\config\.history"
     unalias=alias /d $1
     vi=vim $*
     cmderr=cd /d "%CMDER_ROOT%"
     ew=explorer E:\workcode
     e=explorer $1
     eapp=explorer E:\APP
     oc=chrome www.baidu.com
     ocb=chrome www.lijinya.xyz
     ov=Code.exe
     ow=webstorm64.exe
     ot=notepad++.exe
     os=sublime_text.exe
    

提前把程序的路径写到环境变量,这样就可以快速启动程序了。

  1. cmder可以使用linux命令,支持分屏显示。优点多多,自行体会。

简单效果