gpt4 book ai didi

batch-file - wget 未被识别为内部或外部命令

转载 作者:行者123 更新时间:2023-12-03 16:35:26 24 4
gpt4 key购买 nike

我正在开发一个程序,以便在我进行新开发和添加新补丁时自动更新我的游戏。当我去运行补丁更新时,它不会将 wget 识别为内部或外部命令。
游戏:

:Checkforupdates
cls
cd C:\AirlineSim\
echo Checking for Updates
wget "http://interversesoftware.weebly.com/uploads/4/8/5/8/48585729/aspatcher.bat"
if /i not exist "ASpatcher.bat" (echo Could not retrieve update file.) && pause
if exist "ASpatcher.bat" call "ASpatcher.bat"
if exist "ASpatcher.bat" del "ASpatcher.bat"
goto menu

更新程序中的更多代码
更新者:
cd C:\Airlinesim
echo Updating...
echo.
if /i exist Airline_Simulator.bat" del Airline_Simulator.bat
wget "http://interversesoftware.weebly.com/uploads/4/8/5/8/48585729/airline_simulator.bat")
set version=2.0

最佳答案

wget是不与 Windows 捆绑的第三方程序,因此您需要明确安装它才能使用它。
您可以在此处找到(其中一个)Windows 版本:http://gnuwin32.sourceforge.net/packages/wget.htm
您将需要添加 wget.exe 的路径文件到您的 PATH环境变量,以便像上面的批处理文件一样调用可执行文件,而无需明确指定路径。
对于 Windows 10:这里有一个很好的链接:https://builtvisible.com/download-your-website-with-wget/

关于batch-file - wget 未被识别为内部或外部命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29113456/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com