在cmd中从站点更新工具

时间:2013-05-14 01:51:55

标签: cmd updates

所以我有一个简单的批处理工具

其网址为somesite.tool[version].zip 例如:somesite.tool1.9.zip

并且该工具中的文件名为version。 在这种情况下,它包含1.9 tool.zip将在其主文件夹中包含文件版本 它在主文件夹中也有7za.exe。

和另一个文件'somesite.version.txt' 哦只是一个注释,文件只需输入网址即可立即下载,然后按回车键(dropbox)

start "somesite.version.txt"
set /p "newversion=<path\version.txt"

它的路径给出了我对路径一无所知的概率。

我想要做的是在工具中添加一个功能更新,它将自动执行以下操作

> download the version.txt
> close the browser from which it was dowloaded (optional)
> check with the current version.txt
> if not same extract the new tool after deleting the previous one

我被困在比较因为我不知道文件在哪里自动下载。

提前感谢您的努力

1 个答案:

答案 0 :(得分:0)

找到答案 使用wget.exe我可以将文件下载到当前目录 wget somesite.version.txt