Linux tar
extract tar
$ tar -xvf filename.tar
- to turn off verbose
$ tar -xf filename.tar
- x: This command instructs to extract the files from a particular zip file.
- v: This command stands for
verbose
that works to list out the files - Z: This command instructs to decompress the files.
- F: This command instructs the filename on which you want to work.
Leave a comment