Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This question refers to curl 7.21.4 and GNU Wget 1.13.4, I don't know if the answer is version specific.

Using the 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 the same using wget I receive an error:

$ wget file://localhost/Users/dave/.vimrc
file://localhost/Users/dave/.vimrc: Unsupported scheme `file'

Does anyone know why this is the case?

share|improve this question

2 Answers

up vote 3 down vote accepted

Because Wget has not been written to support file:// URLs. (It's front web page clearly states "GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP")

Allow me to point to a little curl vs wget comparison.

share|improve this answer

wget only supports the HTTP, HTTPS, and FTP protocols.

share|improve this answer
Can you provide a citation, or a reason why this is the case? – dukedave May 4 '12 at 16:45
gnu.org/software/wget – Jon Friskics May 4 '12 at 20:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.