I frequently use wget to download tarballs and zip files from the web, then either untar then or gunzip them. I do:
wget google.com/somefile.zip
unzip somefile.zip
rm somefile.zip
Is there a way for me to automatically pass the zip file to tar or unzip WHILE wget-ting? In pseudocode:
wget google.com/somfile.zip && unzip
