Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我想知道 wget 的 windows 等效项是什么
我目前在 R 中有一个具有命令的函数
system("wget www.random.url.com/file")
从运行 R 的 mac/unix 机器从 Internet 下载文件...在 Windows 中,R 的等价物是什么?
查看download.file下载文件到您的计算机。这适用于所有操作系统,包括 Linux、Mac 和 Windows。
download.file
powershell -command "iwr -outf abc.zip http://example.com/xyz.zip"