Windows 终端使用代理 # 使用 http 类型代理 set http_proxy=http://127.0.0.1:8484 set https_proxy=http://127.0.0.1:8484 # 使用 socks 类型代理 netsh winhttp set proxy proxy-server="socks=127.0.0.1:8484" bypass-list="localhost" netsh winhttp show proxy netsh…
初衷 由于项目开发使用go,所以经常要用到go get,但是吧,terminal下根本没办法下载啊,经常下载三个小时包,写代码一个小时 迫于无奈,只好找个方式可以在terminal下使用ss cmd下配置 set http_proxy=http://127.0.0.1:1080 set http_proxys=http://127.0.0.1:1080 可以使用 set http_proxy= set http_proxys= gitbash/shell下配置 export http_proxy…
setting proxy for Windows CMD and Linux Terminal Linux Terminal: set http_proxy=http://127.0.0.1:8118 set https_proxy=http://127.0.0.1:8118 set http_proxy= set https_proxy= more ref: Setting proxy for apt from terminal Windows CMD: format: set HTTP_P…
windows cmd窗口提示“telnet”命令不能内部或外部命令,也不是可运行的程序 原因:C:\Windows\System32目录下没有telnet.exe,path系统变量的值包含了C:\Windows\System32这个目录 解决方案: 安装控制面板下的Windows功能的telnet客户端 telnet作用之一:测试使用到port的程序是否已经启动 telnet使用:telnet ip port telnet简单原理(req+res): telnet客户机要做两件事: 读取用户在…
1. 安装clink插件使得windows cmd.exe更好用 https://github.com/mridgers/clink/releases Overview: Clink combines the native Windows shell cmd.exe with the powerful command line editing features of the GNU Readline library, which provides rich completion, history…