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

extract from tar gz into folder

mkdir foo
tar -xzf bar.tar.gz -C foo
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

extract tar.gz

 tar -zxvf {file.tar.gz}
Comment

tar.gz extract

tar -xf archive.tar.gz -C /home/linuxize/files
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 :: get ORACLE_HOME linux 
Shell :: restart computer command linux 
Shell :: find and delete files with extension linux 
Shell :: check space left in ubuntu terminal 
Shell :: docker created network 
Shell :: jekyll run 
Shell :: join docker swarm 
Shell :: awk get last field 
Shell :: gradle threw an error while downloading artifacts from the network. retrying to download 
Shell :: unable to locate a java runtime that supports javaws 
Shell :: etcher download ubuntu 18.04 
Shell :: npm install bootstrap 
Shell :: exit vim 
Shell :: renaming a docker container 
Shell :: save output of command to variable bash 
Shell :: remove bar in browser in ubuntu 
Shell :: wmv to mp4 ffmpeg 
Shell :: Install ansible in alpine linux 
Shell :: yum install node version 12 
Shell :: run dotnet core app 
Shell :: github actions configure aws credentials 
Shell :: install rbenv 
Shell :: kubectl cleanup pods 
Shell :: install cmake kali 
Shell :: search git 
Shell :: drush config import single file 
Shell :: disable ssh login only keys 
Shell :: ubuntu ram type 
Shell :: how to kill intellij process in linux 
Shell :: rename pc powershell 
ADD CONTENT
Topic
Content
Source link
Name
1+4 =