常用dos命令

关闭端口占用进程

1
2
3
4
5
#查询占用pid
netstat -ano | findstr 80

#杀死进程
taskkill -PID 233 -F xxx

window控制台走代理

1
2
set http_proxy=http://127.0.0.1:10809
set https_proxy=http://127.0.0.1:10809

批量压缩文件夹

1
2
3
4
5
6
7
8
@echo off
for /D %%i in (*) do (
cd %%i
rar A -S -R -rr4p "%%i.rar" *.*
move "%%i.rar" ..
cd ..
)
pause