I tried to use wget with tar as follows
wget -qO- [url] | tar xvf
but I can not get the expected effect. Are there other ways to do this?
I tried to use wget with tar as follows
wget -qO- [url] | tar xvf
but I can not get the expected effect. Are there other ways to do this?
I got it using
wget -qO- [link] | tar xz
The z-parameter has been inserted because it is a tar.gz file.
You can use
wget [link] && tar xvzf [nome_arquivo].tar.gz && rm [nome_arquivo].tar.gz
What about:
$ wget -O - https://ftp.gnu.org/gnu/binutils/binutils-2.7.tar.gz | tar xvzf -