How to extract tar
$ tar -xvf filename.tar
- Command
- tar
- Description
- Command options to extract/unzip a tar file. Usage: tar -xvf filename.tar
- Deep Dive
- Explanation of flags: -x: eXtract -v: Verbose (show progress) -f: File (specify filename) Combine them as -xvf.