Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

bash command for unzipping tar.gz files

# Basic syntax:
tar -zxvf file.tar.gz

# Where:
#	- x tells tar to extract the files
#	- v tells the command to list all of the files in the archive
#	- z tells the tar command to uncompress the file (gzip)
#	- f tells tar that you are going to give it a file name to work with
Comment

unzip tar.gz

tar -xvf file.tar.gz
Comment

linux unpack tar.gz file

tar -zxvf file_name.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

tar xvzf file.tar.gz
Comment

extracting tar.gz

tar –xvf documents.tar
Comment

PREVIOUS NEXT
Code Example
Shell :: docker no sudo 
Shell :: delete distro 
Shell :: install make on windows 
Shell :: set selinux 
Shell :: how to convert ui to py pyside2 
Shell :: tsc init 
Shell :: update gnome shell 
Shell :: install vscode insiders ubuntu 
Shell :: ssh-keygen 
Shell :: pip install import export django 
Shell :: rm hidden files linux 
Shell :: geopandas is not installin 
Shell :: stash untracked files 
Shell :: php curl ignore ssl certificate 
Shell :: install modules from text file pip 
Shell :: uninstall mongoose using npm 
Shell :: snap store fedora 
Shell :: update software in ubuntu 
Shell :: git submodule update 
Shell :: address already in use 0.0.0.0:8080 
Shell :: firewall-cmd status 
Shell :: show git tree in terminal 
Shell :: how to install unzip in ubuntu 
Shell :: stop localhost server 
Shell :: install dirsearch 
Shell :: ano de lançamento do youtube 
Shell :: ubuntu remove directory 
Shell :: notebook 
Shell :: install chatterbot anaconda 
Shell :: Linux command line search and replace string 
ADD CONTENT
Topic
Content
Source link
Name
4+3 =