Opening a .tar.gz file with a single command

tar xzf file.tar.gz

The letters are:

  • x – extract
  • z – gunzip the input
  • f – Read from a file, not stdin

Leave a Comment