When I download a .tar.gz file, I open it with two commands, first gunzip and then tar.
gunzip
tar
Is it possible to open it with just one command?
If you don't have gnu tar it is still possible to open the file in a single step (although technically still two commands) using a pipe
zcat file.tar.gz |tar x