聲明:全部文章都是轉載整理的,只是爲了本身學習,方便本身觀看,若有侵權,請當即聯繫我,謝謝~
windows上作開發,不論是cmd仍是powershell,彷佛都不夠美觀,不夠強大,今天就來介紹一款能夠替代cmd的神器,Cmder,話很少少,如圖:
Cmder的主要優勢是可移植性。 它設計爲徹底獨立,沒有外部依賴性,這使其很是適合USB Sticks或雲存儲。 所以,能夠隨身攜帶控制檯,別名和二進制文件(如wget,curl和git)
它有以下特色;git
下載連接:Cmder.net
同時他也是一個開源項目:在github上的地址:cmdergithub
1.下載最新版本
2.將存檔解壓縮到共享位置。
3.(可選)將本身的可執行文件放入%cmder_root%\ bin
文件夾以注入PATH。
4.(可選)建立%userprofile%\ cmder_config \ bin
文件夾以注入單個用戶PATH。 默認是在第一次運行時自動建立它。
5.(可選)將本身的可執行文件放入%userprofile%\ cmder_config \ bin
文件夾以注入PATH
。
6.使用/ C
命令行參數運行Cmder.exe
。 示例:cmder.exe / C%userprofile%\ cmder_config
- 若是缺乏,將建立如下目錄結構。shell
C:\ Users \ [用戶名] \ cmder_config ├───bin └───config └───profile.d
init
和profile.d
腳本,從而啓用帶有用戶覆蓋的共享配置。用法:Cmder.exe /REGISTER ALL
(須要管理員權限)windows
參數 | 說明 |
---|---|
/C [user_root_path] |
我的用戶Cmder根文件夾,例如: %userprofile%\cmder_config |
/M |
使用 conemu-%computername%.xml 來儲存設置,而不是用戶設置 user_conemu.xml |
/REGISTER [ALL, USER] |
註冊Windows右鍵菜單 |
/UNREGISTER [ALL, USER] |
反註冊Windows右鍵菜單 |
/SINGLE |
以單一模式啓動Cmder. |
/START [start_path] |
啓動的文件夾路徑. |
/TASK [task_name] |
啓動後的任務. |
powershell
setting -> Startup - > Task
,修改{cmd::Cmder}
項,把:*cmd /k "%ConEmuDir%\..\init.bat" -new_console:d:%USERPROFILE%
修改爲 :cmd /k "%ConEmuDir%\..\init.bat" -new_console:d:
bash
Win + ALT + P
,喚出設置界面直接去掉右邊那個monospce的對勾便可
app
ls
命令不支持中文win+alt+p
打開設置面板,找到Startup -> Envrioment
選項
在下面的文本框裏添加一行 set LANG=zh_CN.UTF-8
而後重啓cmder
而後用ls命令查看目錄下的文件,帶中文的文件名都能正常顯示了curl
cmder默認的命令提示符是 λ
,若是想改爲常見的 $
,具體操做以下:
打開cmder安裝目錄下的\vendor\clink.lua
文件找到lambda = "λ"和lambda = "("..env..") λ"
把λ
替換成$
而後重啓cmder便可,但powerShell
須要另行設置,打開cmder安裝目錄下的\vendor\profile.ps1
文件找到λ <PostPrompt> <repl input>
和λ <PostPrompt> |
和Microsoft.PowerShell.UtilityWrite-Host "nλ " -NoNewLine -ForegroundColor "DarkGray"
把λ
替換成$
,而後重啓cmder便可
下面是官方說明:編輯器
Open the following file in your favourite IDE:svn
\cmder\vendor\clink.lua
NOTE: To avoid the clink.lua
getting overwritten on update, create a new file at %cmder_root%\config\my_prompt.lua
with your changes -- 學習
Find the following lines:
local cmder_prompt = "\x1b[1;32;40m{cwd} {git}{hg}{svn} \n\x1b[2;37;40m{lamb} \x1b[0m" local lambda = "λ"
The color is controlled by escape sequences, which is written as ESC [
in the documentation or \x1b[
in our clink.lua
file.
For example, \x1b[1;32;40m
will display the path ({cwd}
) in green.
If you change 32 to 36, you'll get cyan path:
If you change 32 to 33, you'll get yellow path:
要將Cmder做爲任何基於IntelliJ的IDE運行,能夠按照如下步驟操做:
1.在Cmder安裝目錄中建立一個新的cmder_shell.bat
文件,其中包含如下內容:@cmd.exe /k %0\..\vendor\init.bat
2.在IDE環境中,按Ctrl + Alt + S
並在搜索框中鍵入terminal
。
3.在 Shell路徑中,將 cmd.exe 更改成如下內容:[cmder_root] \ cmder_shell.bat
(cmder_root是你建立的環境變量,或者是你的cmder文件夾路徑)
4.而後就能夠看到terminal啦
[cmder_root]
。提示:定義一個環境變量用做[cmder_root]
。
%ConEmuDir%
,在建立變量時使用如下值: - 變量名稱:%ConEmuDir%
- 值:[cmder_root] vendor conemu-maximus5例如:C:\ apps \ cmder \ vendor \ conemu-maximus5
path
找到 path
變量,再添加一條爲你的cmder地址,好比個人就是D:\Program Files\Cmder\
win+r
命令,輸入cmder
就能夠運行了自定義aliases
cmder還增長了alias功能,它讓你用短短的指令執行一些常見但指令超長又難以記憶的語法;好比 ls cls
等等
打開cmder安裝目錄下的\config\user-aliases.cmd
文件
下面是我本身定義的經常使用的
code="C:\Users\yanni\AppData\Local\Programs\Microsoft VS Code\Code.exe" //輸入code打開vscode編輯器 w=cd /d d://github //輸入w跳轉到d盤下的github目錄 ..=cd .. //輸入..返回上一級文件夾
還有更多的配置,等着挖掘...