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?
You can use tar with a "z" argument
tar xvfz mytar.tar.gz