Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

unzip tar.gz

tar -xvf file.tar.gz
Comment

tar gz compress extract

# compress
tar -czvf projects.tar.gz projects/
# extract
tar -xzvf projects.tar.gz

-c, --create
      create a new archive
-x, --extract, --get
      extract files from an archive
-z, --gzip, --gunzip --ungzip
-v, --verbose
      verbosely list files processed
-f, --file ARCHIVE
      use archive file or device ARCHIVE

tar [-] A --catenate --concatenate | c --create | d --diff --compare | --delete | r --append | t --list |
    --test-label | u --update | x --extract --get [options] [pathname ...]
Comment

tar extract gz

# 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
Comment

tar.gz extract

tar -xf archive.tar.gz
Comment

how to open tar.gz file in windows 10

 tar -xvzf <filename.tar.gz>
Comment

extract tar.gz in linux

tar –xvzf documents.tar.gz
Comment

how to unzip tar.gz file

tar -xvf archive.tar.gz
or
tar -xf archive.tar.gz -C /home/linuxize/files
Comment

extract tar.gz

tar -xf archive.tar.gz
Comment

tar.gz extract

tar -xf archive.tar.gz -C /home/linuxize/files
Comment

extract tar.gz

 tar -zxvf {file.tar.gz}
Comment

extract tar gz file windows

tar -xvzf C:PATHTOFILEFILE-NAME.tar.gz -C C:PATHTOFOLDEREXTRACTION
Comment

extract tar gz

tar xvzf file.tar.gz
Comment

extracting tar.gz

tar –xvf documents.tar
Comment

PREVIOUS NEXT
Code Example
Shell :: ffmpeg install ubuntu 
Shell :: git pull not taking latest changes 
Shell :: download office 365 for ubuntu 
Shell :: flask wtforms pip install 
Shell :: hard link linux 
Shell :: c# powershell 
Shell :: install composer in ubuntu 
Shell :: search for ADS 
Shell :: where is ubuntu installed in windows 10 
Shell :: powershell start a process and wait for it to finish 
Shell :: set environment variable linux 
Shell :: cuda 10 install pytorch 
Shell :: bbb secret key 
Shell :: rename branch in git 
Shell :: adobe reader for ubuntu 20.04 
Shell :: conemu git bash 
Shell :: sed from start to match 
Shell :: cat meaning linux 
Shell :: k8s roll back to previous deployment 
Shell :: Brave on OpenSUSE 
Shell :: install vim in wsl 
Shell :: c linux compiler 
Shell :: os installation date 
Shell :: github push code from one repo to another 
Shell :: copy first n files linux 
Shell :: how to install pandas 
Shell :: zsh mac vi 
Shell :: install qtpy 
Shell :: mikrotik reboot bash sintakx 
Shell :: install pip in pyenv 
ADD CONTENT
Topic
Content
Source link
Name
6+3 =