win添加Linux命令
创建 linux_cmd.bat 文件
在个人路径(C:\Users\****)下创建 linux_cmd.bat 文件,内容如下
@echo off
:: Linux 命令对应表
doskey ls = dir $*
doskey cp = copy $*
doskey rm = del $*
doskey mv = move $*
doskey pwd = cd
doskey clear = cls
doskey ps = tasklist $*
doskey alias = doskey $*
doskey cat = type $*
doskey cpr = xcopy $*
doskey grep = find $*
doskey history = doskey /history
doskey kill = taskkill /PID $*
doskey man = help $*
doskey rmr = deltree $*
doskey sudo = runas /user: administrator $*
doskey vi = vim $*
echo with Linux bash command
添加注册表
让每次执行cmd时都自动加载
打开注册表
在
计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Command Processor
位置
添加字符串值(String Value)
Value name:
AutoRUN
Value data:
C:\Users\***\linux_cmd.bat
当你握紧双手,里面什么也没有;当你打开双手,世界就在你手中。