Windows 批处理命令相当于“curl -s -L http://j.mp/script.sh | bash”

Windows 批处理命令相当于“curl -s -L http://j.mp/script.sh | bash”

我想运行一个批处理脚本,该脚本调用互联网上托管的另一个批处理脚本。在 bash 中,可以使用类似下面的方法完成此操作:

curl -s -L http://j.mp/script.sh | bash

我如何在 Windows 批处理中实现这一点。我有 busybox 和 curl,但没有 powershell。

我环顾四周,但也许我使用了错误的关键词,因为我找不到我想要的东西。

相关内容