Horje
how to unzip Tar file Code Example
how to unzip Tar file
## Untar files in Current Directory ##
tar -xvf filename.tar.gz

## Untar files in specified Directory ##
tar -xvf filename.tar.gz -C /path_name_for_unzip/

-x : extract
-C : specified directory
-v : Verbosely show the .tar file progress.
-f : filename of archive file
untar .tar file
tar -xvf yourfile.tar
how to untar a tar file
tar -zxvf file_name.tar.gz
how to unzip using tar
tar -xf archive.tar.gz
Source: linuxize.com




Shell

Related
fatal: refusing to merge unrelated histories Code Example fatal: refusing to merge unrelated histories Code Example
node js download ubuntu Code Example node js download ubuntu Code Example
git cannot spawn gpg no such file or directory Code Example git cannot spawn gpg no such file or directory Code Example
update nodejs raspberry pi Code Example update nodejs raspberry pi Code Example
how to install mongoose Code Example how to install mongoose Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10