This question relates to curl 7.21.4 and GNU Wget 1.13.4, I donβt know if the answer matches the specific versions.
Using file URI scheme I can get local file using curl
as such
$ curl file://localhost/Users/dave/.vimrc contents of .vimrc
However, if I try to use the same with wget
, I get an error message:
$ wget file://localhost/Users/dave/.vimrc file://localhost/Users/dave/.vimrc: Unsupported scheme `file'
Does anyone know why this is so?
source share