如何在 bash 中通过 FILE URI 方案下载文件



可能的重复项:
wget:非 http URL 上不支持的方案

例如:

export URI=file:///myhost/system.log

如何在 bash 中从这个 URI 下载系统.log文件?

我尝试使用wgetcurl但它们不支持文件URI方案。

尝试这样做:

export URI="file:///etc/passwd"
curl -s "$URI" > /tmp/l
cat /tmp/l

如果需要下载远程文件,则应使用其他协议(和方案),例如:

curl ftp://user:password@host:port/path/to/file

scp host:/path/to/file file

等。。。

注意

curl能够下载文件方案,不管你说什么。

相关内容

  • 没有找到相关文章

最新更新