Tar Commands
This document shows some of the most Common Tar commands
Extract
Command | Description |
---|---|
tar -xvf file.tar.gz | x to extract a file, v to do it verbosoly, f this must be the last flag of the command, tells the next argument is gonna me a file |
tar -xvf file.tar.gz -C /output/path | provide a output directory. make sure the directory exists! |