例えば:
export URI=file:///myhost/system.log
bash でこの URI から system.log ファイルをダウンロードするにはどうすればよいですか?
wget
andを使用してみcurl
ましたが、FILE URI スキームをサポートしていません。
例えば:
export URI=file:///myhost/system.log
bash でこの URI から system.log ファイルをダウンロードするにはどうすればよいですか?
wget
andを使用してみcurl
ましたが、FILE URI スキームをサポートしていません。
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.