How to remember untar command
To extract a .tar
or .tar.gz
you only need to type
tar -xf file.tar.gz
This just stands for eXtract File, hence -xf
. Optionally you can add v
flag, which stands for Verbose, to see the operation progress with more detail, which becomes tar -xvf file.tar.gz
but that’s optional.
To contact me, send an email anytime or leave a comment below.