Wget and tar

Is it possible to pipe a tar -xzf with a wget ? Thank you :).

wget http://www.openbioinformatics.org/annovar/download/0wgxR2rIVP/annovar.latest.tar.gz | tar -xzf annovar.latest.tar.gz

Yes it is.

wget URL -O - | tar -zxf -
1 Like

Thank you :slight_smile:

1 Like