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

how to untar tar.gz

 tar xvzf file.tar.gz
Comment

unzip tar.gz

tar -xvf file.tar.gz
Comment

linux unpack tar.gz file

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

linux extract tar.gz

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

extracting tar.gz

tar –xvf documents.tar
Comment

PREVIOUS NEXT
Code Example
Shell :: open port on firewall linux 
Shell :: macos clear terminal 
Shell :: delete branch github 
Shell :: bashrc for powershell 
Shell :: flutter Android sdkmanager not found. Update to the latest Android SDK and ensure that the cmdline-tools are installed to resolve this. 
Shell :: react hook install 
Shell :: powershell get all computers in ou 
Shell :: clear the git stash 
Shell :: wsl 
Shell :: linux how many cpus 
Shell :: install get cli 
Shell :: create patch in git 
Shell :: how to configure httpd in amazon ec2 instance 
Shell :: remove composer package 
Shell :: bash loop foreach find 
Shell :: pull branch git 
Shell :: git current branch 
Shell :: kuberentes get nodes 
Shell :: install fleetssl 
Shell :: linux lis disks 
Shell :: change crontab editor 
Shell :: jq starts with 
Shell :: Closed INTERNAL ERROR: cannot create temporary directory 
Shell :: install oh my zsh! 
Shell :: batteryreport win10 
Shell :: Something is already running on port 3000. Probably: 
Shell :: git alias - multiple commands 
Shell :: parent branch 
Shell :: Unable to locate package brave-browser ubuntu 20 
Shell :: how to reverse shell 
ADD CONTENT
Topic
Content
Source link
Name
1+5 =