Google Appengine 通过 SDK 上传要用到代理,直接写成批处理命令,不用每次输入代理地址了。
March 13, 2018
@echo off rem "关闭自动输出" rem "接收输入" set input= set /p input=The proxy port: rem "输出得到的输入信息" echo Set the proxy port:%input% echo Set the the http proxy... set http_proxy=http://127.0.0.1:%input% echo http_proxy=http://127.0.0.1:%input% echo Set the the https proxy... set https_proxy=http://127.0.0.1:%input% echo https_proxy=http://127.0.0.1:%input% :begin echo. set /p input1=Which folder do you want to upload: appcfg.py update ..\codes\%input1% --noauth_local_webserver rem pause>null echo. rem "从begin标签处,再次运行" goto begin