我有一个批处理文件,首先使用我的令牌运行ngrok,然后使用我想要的子域名
"C:\ngrok\ngrok.exe" -authtoken mytoken 8080
"C:\ngrok\ngrok.exe" -subdomain=example 8080
现在,当我跑步时,我必须通过ctrl + c从第1行退出,以便移动到下一行。有没有办法说n秒后会自动发生? 感谢
答案 0 :(得分:2)
cd C:\ngrok
start "ngrok" "ngrok.exe" -authtoken mytoken 8080
timeout 5
taskkill /f /im ngrok.exe
start "ngrok" "ngrok.exe" -subdomain=example 8080
如果你想在一个程序窗口内运行程序,你可以使用" start / b"命令。更多信息可以在这里找到: http://ss64.com/nt/start.html