Possible Duplicate:
wget: Unsupported scheme on non-http URL
For example:
export URI=file:///myhost/system.log
How to download the system.log file from this URI in bash?
I have tried using wget and curl but they don’t support the FILE URI scheme.
Try doing this :
If you need to download a remote file, you should use another protocol (and scheme), like :
or
etc…
NOTE
curlis able to download file scheme, despite what you said.