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

unzip a tar.gz file in linux

tar -xvzf community_images.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

PREVIOUS NEXT
Code Example
Shell :: uninstall pgadmin3 ubuntu 
Shell :: conda install git 
Shell :: ubuntu 18 ffmpeg install 
Shell :: Installing graphviz in Linux 
Shell :: upgrade plotly version 
Shell :: git remove file from repo that has been added to gitignore 
Shell :: brew reinstall mysql 
Shell :: zoom download ubuntu 
Shell :: install selenium python 
Shell :: conda install transformers 
Shell :: how to update laravel installer 
Shell :: git graph 
Shell :: check if service in running to a port in linux 
Shell :: conda install requirements.txt example 
Shell :: install portainer 
Shell :: linux chown www-data 
Shell :: git show tree graph 
Shell :: how to ignore already committed files in git 
Shell :: hello world powershell 
Shell :: maven clean install skip test 
Shell :: upgrade django version 
Shell :: update pnpm 
Shell :: paint for ubuntu 
Shell :: centos install lsb_release 
Shell :: Failed to start redis-server.service: Unit redis-server.service is masked. 
Shell :: libgthread-2.0.so.0: cannot open shared object file: No such file or directory 
Shell :: git show last commit 
Shell :: how change remote origin git 
Shell :: install sdl2 linux 
Shell :: install spyder conda 
ADD CONTENT
Topic
Content
Source link
Name
7+5 =