我有一个脚本,当前从使用单点登录(SSO)基础结构的下载链接下载文件。目前我正在使用带有curl的批处理脚本来下载它。如何在R中使用equalivent all来下载文件
curl negotiate -u user:pass -L --insecure -o DownloadFileName.xml "https://Server/Servlet?param1=value1"
答案 0 :(得分:0)
正如@tospig建议的那样使用system()
:
system("curl negotiate -u user:pass -L --insecure -o DownloadFileName.xml \"https://Server/Servlet?param1=value1\"")