这个问题涉及卷曲7.21.4和GNU Wget 1.13.4,我不知道答案是否是版本特定的.
使用file URI scheme我可以使用curl获取本地文件
$curl file://localhost/Users/dave/.vimrc contents of .vimrc
但是,如果我使用wget尝试相同,我收到一个错误:
$wget file://localhost/Users/dave/.vimrc file://localhost/Users/dave/.vimrc: Unsupported scheme `file'
有谁知道为什么会这样?
解决方法
因为Wget尚未编写为支持file:// URL. (这是
front web page明确指出“GNU Wget是一个使用HTTP,HTTPS和FTP检索文件的免费软件包”)
请允许我指出一点curl vs wget comparison.