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

untar tar.gz

tar -xzf file.tar.gz
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

unzip a tar.gz file in linux

tar -xvzf community_images.tar.gz
Comment

tar.gz extract

tar -xf archive.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

tar.gz

tar -xvzf community_images.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 :: install slack on linux 
Shell :: how to pull from original repository upstream 
Shell :: chrome download for linux 
Shell :: depmod: not found 
Shell :: you failed to push some refs to git 
Shell :: how to install spotify in linux 
Shell :: mac install sklearn 
Shell :: cd into differernt drive 
Shell :: bash read file line by line 
Shell :: search file in ubuntu 
Shell :: mvn versions set 
Shell :: git push specify ssh key 
Shell :: how to revert to a specific commit in origin 
Shell :: install discord fedora 
Shell :: bash tab completion cycle 
Shell :: laravel installation from github 
Shell :: command not found: nvm 
Shell :: gitflow install linux 
Shell :: helm repo list charts 
Shell :: better discord how to install plugins 
Shell :: how to set default editor in git 
Shell :: git deleted file error 
Shell :: ssh raspberryp 
Shell :: Linux Mint reset xfce-panel 
Shell :: debian install openjdk 
Shell :: Cannot make for rpm, the following external binaries need to be installed: rpmbuild 
Shell :: diskpart commands 
Shell :: cannot install ngx-toastr in angular 13 
Shell :: install kafka windows 
Shell :: bash show contents of file 
ADD CONTENT
Topic
Content
Source link
Name
5+2 =