Horje
tar extract to folder 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
extract tar.gz ubuntu terminal
tar -xvf yourfile.tar.gz
untar .tar file
tar -xvf yourfile.tar
tar extract to path
tar -xf archive.tar -C /target/directory
tar extract to folder
# compress
tar czvf < archive_name >.tar.gz < path >
# extract
tar xzvf < archive_name >.tar.gz
tar xzvf < archive_name >.tar.gz  -C /home/usera/tmp
extract from tar gz into folder
mkdir foo
tar -xzf bar.tar.gz -C foo




Shell

Related
Error: That port is already in use. Code Example Error: That port is already in use. Code Example
how to push code to another remote git repository Code Example how to push code to another remote git repository Code Example
how to make a list bash Code Example how to make a list bash Code Example
git clone vs git pull Code Example git clone vs git pull Code Example
tar extract gz Code Example tar extract gz Code Example

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