1

重複の可能性:
wget: http 以外の URL ではサポートされていないスキーム

例えば:

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

bash でこの URI から system.log ファイルをダウンロードするにはどうすればよいですか?

wgetandを使用してみcurlましたが、FILE URI スキームをサポートしていません。

4

1 に答える 1

3

Try doing this :

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

If you need to download a remote file, you should use another protocol (and scheme), like :

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

or

scp host:/path/to/file file

etc...

NOTE

curl is able to download file scheme, despite what you said.

于 2012-11-15T17:29:54.413 に答える