Neurohazard
暮雲煙月,皓首窮經;森羅萬象,如是我聞。

在 Windows Cmd/Powershell 中使用类似 bashrc 的功能

wpadmin~April 29, 2019 /System Management

在 Windows Cmd/Powershell 中使用类似 bashrc 的功能

基本步骤

1 关闭所有在运行的CMD窗口
2 创建文件 D:\cmd-alias.bat,包含以下内容.
3 使用 Win+R ,输入 regedit 进入注册表,找到 HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor,右键新建,字符串值,名为 AutoRun ,值为 D:\cmd-alias.bat,保存退出。

NOTE: 可以尝试在 github 使用 高级搜索 “cat=type” 限制扩展名为 .bat 可以找到很多类似 cmdrc.bat 的文件,作为一些配置参考。

https://github.com/ajkerzner/scripts/blob/master/Windows/cmd_aliases.bat

我的常见配置项

@ECHO off
@doskey open=explorer $*
@doskey pwd=chdir
@doskey cp=copy $*
@doskey mv=ren $*
@doskey rm=del $*
@doskey diff=fc $*
@doskey ifconfig=ipconfig
@doskey clear=cls
@doskey ..=cd ..
@doskey kill=taskkill /PID $*
@doskey which=where $*
@doskey ps=tasklist $*
@doskey env=set $*
@doskey alias=doskey $*
@doskey man=help $*
@doskey history=doskey /h $*
@doskey traceroute=tracert $*

:: scoop install 7zip curl sudo git openssh coreutils grep sed less
:: scoop install grep 
:: 这样就能有真的 grep 而不是寻找替代。
:: @doskey grep=findstr "$1" $2
:: @doskey cat=type $*
@doskey ls=dir /b $*
@doskey ll=dir /od/p/q/tw /a $*



@doskey git="C:\Users\SoftJ\scoop\apps\git\2.23.0.windows.1\bin\git.exe" $*
@doskey code="C:\FILES\Program Files\Microsoft VS Code\Code.exe" $*
@doskey vscode="C:\FILES\Program Files\Microsoft VS Code\Code.exe" $*

@doskey python2="C:\Python27\python.exe" $*
@doskey pip2="C:\Python27\Scripts\pip.exe" $*
@doskey python3="C:\Python36\python.exe" $*
@doskey pip3="C:\Python36\Scripts\pip.exe" $*

@doskey javac="C:\Program Files\Java\jdk1.8.0_212\bin\javac.exe" $*
@doskey jar="C:\Program Files\Java\jdk1.8.0_212\bin\jar.exe" $*

@doskey php56=D:\phpStudy2018\PHPTutorial\php\php-5.6.27-nts\php.exe $*

@doskey nc64=D:\pentest_tools\netcat-win32-1.12\nc64.exe $*
@doskey nc=D:\pentest_tools\netcat-win32-1.12\nc.exe $*

@doskey sqlmap=C:\Python27\python.exe D:\pentest_tmp\sqlmap\sqlmap.py $*



PATH %PATH%;D:\pentest_tmp\clitool;
PATH %PATH%;%USERPROFILE%\.pyenv\pyenv-win\bin;%USERPROFILE%\.pyenv\pyenv-win\shims;
@doskey time_for_work=cd /d D:\pentest_tools
@doskey burp_home=cd /d D:\pentest_tools\burpsuite\21burp
@doskey burp_start=java -jar BurpHelper.jar
@doskey poc_work=cd /d D:\pentest_report\Project\20190710_poc
@doskey struts_tools=cd /d D:\pentest_tools\struts2
@doskey cmder=D:\cmder\Cmder.exe





set PYPI_URL="https://mirrors.aliyun.com/pypi/simple/"

PYPI_URL 的使用方式
pip3 install pyenv-win --target %USERPROFILE%/.pyenv -i %PYPI_URL%

clitool

dig (有坑)
curl
nc
NTop
https://github.com/Nuke928/NTop

Leave a Reply

Your email address will not be published. Required fields are marked *