2

嗨,我想知道 wget 的 windows 等效项是什么

我目前在 R 中有一个具有命令的函数

system("wget www.random.url.com/file")

从运行 R 的 mac/unix 机器从 Internet 下载文件...在 Windows 中,R 的等价物是什么?

4

2 回答 2

5

查看download.file下载文件到您的计算机。这适用于所有操作系统,包括 Linux、Mac 和 Windows。

于 2012-11-12T11:18:31.197 回答
0
powershell -command "iwr -outf abc.zip http://example.com/xyz.zip"
于 2017-08-10T04:10:09.133 回答